N64: Tracelog now includes delay slot execution. Fixes #789
This commit is contained in:
parent
b34c9a5dd8
commit
1ff0cc1e0c
|
@ -60,6 +60,7 @@ static void prefetch(void);
|
|||
interp_PC.addr += 4; \
|
||||
delay_slot=1; \
|
||||
prefetch(); \
|
||||
TRACECB(); \
|
||||
PC->ops(); \
|
||||
update_count(); \
|
||||
delay_slot=0; \
|
||||
|
|
|
@ -94,6 +94,7 @@ int rounding_mode = 0x33F, trunc_mode = 0xF3F, round_mode = 0x33F,
|
|||
PC++; \
|
||||
delay_slot=1; \
|
||||
UPDATE_DEBUGGER(); \
|
||||
TRACECB(); \
|
||||
PC->ops(); \
|
||||
update_count(); \
|
||||
delay_slot=0; \
|
||||
|
@ -126,6 +127,7 @@ int rounding_mode = 0x33F, trunc_mode = 0xF3F, round_mode = 0x33F,
|
|||
PC++; \
|
||||
delay_slot=1; \
|
||||
UPDATE_DEBUGGER(); \
|
||||
TRACECB(); \
|
||||
PC->ops(); \
|
||||
update_count(); \
|
||||
delay_slot=0; \
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue