filename | src/aica/armcore.h |
changeset | 30:89b30313d757 |
prev | 14:fc481a638848 |
next | 35:21a4be098304 |
author | nkeynes |
date | Sun Dec 25 05:57:00 2005 +0000 (15 years ago) |
permissions | -rw-r--r-- |
last change | Change timeslice to nanoseconds (was microseconds) Generize single step (now steps through active CPU) Add lots of header blocks |
file | annotate | diff | log | raw |
1.1 --- a/src/aica/armcore.h Mon Dec 12 10:37:41 2005 +00001.2 +++ b/src/aica/armcore.h Sun Dec 25 05:57:00 2005 +00001.3 @@ -1,3 +1,20 @@1.4 +/**1.5 + * $Id: armcore.h,v 1.6 2005-12-25 05:57:00 nkeynes Exp $1.6 + *1.7 + * Interface definitions for the ARM CPU emulation core proper.1.8 + *1.9 + * Copyright (c) 2005 Nathan Keynes.1.10 + *1.11 + * This program is free software; you can redistribute it and/or modify1.12 + * it under the terms of the GNU General Public License as published by1.13 + * the Free Software Foundation; either version 2 of the License, or1.14 + * (at your option) any later version.1.15 + *1.16 + * This program is distributed in the hope that it will be useful,1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1.19 + * GNU General Public License for more details.1.20 + */1.22 #ifndef dream_armcore_H1.23 #define dream_armcore_H 11.24 @@ -58,5 +75,6 @@1.25 void arm_write_byte( uint32_t addr, uint32_t val );1.26 int32_t arm_read_phys_word( uint32_t addr );1.27 int arm_has_page( uint32_t addr );1.28 +gboolean arm_execute_instruction( void );1.30 #endif /* !dream_armcore_H */
.