Remove non-standard booting behavior of quitting after slot 7, even when scanning slots.

This commit is contained in:
David Schmidt 2010-04-15 23:12:34 +00:00
parent 5206c8ef57
commit 30eb739554

View File

@ -877,9 +877,13 @@ get_remaining_operands(word32 addr, word32 opcode, word32 psr, Fplus *fplus_ptr)
check_breakpoints(addr); \
} \
if((addr & 0xfffff0) == 0x00c700) { \
/* Removing this as it causes non-standard \
booting behavior... \
if(addr == 0xc700) { \
FINISH(RET_C700, 0); \
} else if(addr == 0xc70a) { \
} else \
*/ \
if(addr == 0xc70a) { \
FINISH(RET_C70A, 0); \
} else if(addr == 0xc70d) { \
FINISH(RET_C70D, 0); \