filename | src/sh4/sh4core.h |
changeset | 30:89b30313d757 |
prev | 27:1ef09a52cd1e |
next | 32:bf0bc2c524b8 |
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/sh4/sh4core.h Sun Dec 25 01:28:39 2005 +00001.2 +++ b/src/sh4/sh4core.h Sun Dec 25 05:57:00 2005 +00001.3 @@ -1,5 +1,5 @@1.4 /**1.5 - * $Id: sh4core.h,v 1.5 2005-12-25 01:28:39 nkeynes Exp $1.6 + * $Id: sh4core.h,v 1.6 2005-12-25 05:57:00 nkeynes Exp $1.7 *1.8 * This file defines the public functions exported by the SH4 core, except1.9 * for disassembly functions defined in sh4dasm.h1.10 @@ -16,6 +16,7 @@1.11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1.12 * GNU General Public License for more details.1.13 */1.14 +1.15 #ifndef sh4core_H1.16 #define sh4core_H 11.18 @@ -101,9 +102,9 @@1.19 int32_t sh4_read_phys_word( uint32_t addr );1.21 /* Peripheral functions */1.22 -void DMAC_run_slice( int );1.23 -void TMU_run_slice( int );1.24 -void SCIF_run_slice( int );1.25 +void DMAC_run_slice( uint32_t );1.26 +void TMU_run_slice( uint32_t );1.27 +void SCIF_run_slice( uint32_t );1.28 void SCIF_save_state( FILE *f );1.29 int SCIF_load_state( FILE *f );
.