fix a typo in the symbol name irqExeption which has always bugged me

This commit is contained in:
zeromus 2009-01-10 22:00:43 +00:00
parent 9690913aa0
commit c54e6f000d
3 changed files with 5 additions and 5 deletions

View File

@ -1697,7 +1697,7 @@ u32 NDS_exec(s32 nb)
#ifdef GDB_STUB #ifdef GDB_STUB
if ( armcpu_flagIrq( &NDS_ARM9)) if ( armcpu_flagIrq( &NDS_ARM9))
#else #else
if ( armcpu_irqExeption(&NDS_ARM9)) if ( armcpu_irqException(&NDS_ARM9))
#endif #endif
{ {
nds.ARM9Cycle = nds.cycles; nds.ARM9Cycle = nds.cycles;
@ -1709,7 +1709,7 @@ u32 NDS_exec(s32 nb)
#ifdef GDB_STUB #ifdef GDB_STUB
if ( armcpu_flagIrq( &NDS_ARM7)) if ( armcpu_flagIrq( &NDS_ARM7))
#else #else
if ( armcpu_irqExeption(&NDS_ARM7)) if ( armcpu_irqException(&NDS_ARM7))
#endif #endif
{ {
nds.ARM7Cycle = nds.cycles; nds.ARM7Cycle = nds.cycles;

View File

@ -446,7 +446,7 @@ static BOOL (FASTCALL* test_conditions[])(Status_Reg CPSR)= {
#endif #endif
BOOL armcpu_irqExeption(armcpu_t *armcpu) BOOL armcpu_irqException(armcpu_t *armcpu)
{ {
Status_Reg tmp; Status_Reg tmp;
@ -506,7 +506,7 @@ u32 armcpu_exec()
/* check for interrupts */ /* check for interrupts */
if ( ARMPROC.irq_flag) { if ( ARMPROC.irq_flag) {
armcpu_irqExeption( &ARMPROC); armcpu_irqException( &ARMPROC);
} }
c = armcpu_prefetch(&ARMPROC); c = armcpu_prefetch(&ARMPROC);

View File

@ -218,7 +218,7 @@ u32 armcpu_switchMode(armcpu_t *armcpu, u8 mode);
template<int PROCNUM> u32 armcpu_exec(); template<int PROCNUM> u32 armcpu_exec();
BOOL armcpu_irqExeption(armcpu_t *armcpu); BOOL armcpu_irqException(armcpu_t *armcpu);
BOOL armcpu_flagIrq( armcpu_t *armcpu); BOOL armcpu_flagIrq( armcpu_t *armcpu);
extern armcpu_t NDS_ARM7; extern armcpu_t NDS_ARM7;