Search
lxdream.org :: lxdream/src/sh4/sh4core.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4core.h
changeset 246:98054d036a24
prev157:fbe03268ad8a
next260:c82e26ec0cac
author nkeynes
date Fri Dec 29 00:24:43 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Limit number of sectors read at once (linux driver seems to throw a hissy
fit if you request too many at a time)
file annotate diff log raw
1.1 --- a/src/sh4/sh4core.h Thu Jun 15 10:27:10 2006 +0000
1.2 +++ b/src/sh4/sh4core.h Fri Dec 29 00:24:43 2006 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: sh4core.h,v 1.13 2006-06-15 10:27:10 nkeynes Exp $
1.6 + * $Id: sh4core.h,v 1.14 2006-12-19 09:54:03 nkeynes Exp $
1.7 *
1.8 * This file defines the internal functions exported/used by the SH4 core,
1.9 * except for disassembly functions defined in sh4dasm.h
1.10 @@ -87,7 +87,9 @@
1.11 void sh4_stop( void );
1.12 void sh4_set_pc( int );
1.13 gboolean sh4_execute_instruction( void );
1.14 -void sh4_raise_exception( int, int );
1.15 +gboolean sh4_raise_exception( int );
1.16 +gboolean sh4_raise_slot_exception( int, int );
1.17 +gboolean sh4_raise_tlb_exception( int );
1.18 void sh4_set_breakpoint( uint32_t pc, int type );
1.19 gboolean sh4_clear_breakpoint( uint32_t pc, int type );
1.20 int sh4_get_breakpoint( uint32_t pc );
.