mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
fixed deadlock
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@248 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
5f8c85be2a
commit
32826a1a22
1 changed files with 1 additions and 1 deletions
|
@ -825,8 +825,8 @@ int m68k_execute(int num_cycles)
|
|||
|
||||
/* Read an instruction and call its handler */
|
||||
REG_IR = m68ki_read_imm_16();
|
||||
USE_CYCLES(CYC_INSTRUCTION[REG_IR]); // notaz
|
||||
m68ki_instruction_jump_table[REG_IR]();
|
||||
USE_CYCLES(CYC_INSTRUCTION[REG_IR]); // moving this up may cause a deadlock
|
||||
|
||||
/* Trace m68k_exception, if necessary */
|
||||
m68ki_exception_if_trace(); /* auto-disable (see m68kcpu.h) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue