mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(from Ernesto Corvi / ElSemi)
fix do_ret() based on comparison of ElSemi's core and the MAME core
This commit is contained in:
parent
50c020298b
commit
5cce8356e8
1 changed files with 2 additions and 2 deletions
|
@ -593,9 +593,9 @@ static void do_ret(void)
|
|||
x = program_read_dword(i960.r[I960_FP]-16);
|
||||
y = program_read_dword(i960.r[I960_FP]-12);
|
||||
do_ret_0();
|
||||
i960.AC = x;
|
||||
i960.AC = y;
|
||||
// #### test supervisor
|
||||
i960.PC = y;
|
||||
i960.PC = x;
|
||||
|
||||
// check for another IRQ now that we're back
|
||||
check_irqs();
|
||||
|
|
Loading…
Reference in a new issue