mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
md, fix irq priority handling for H-int
This commit is contained in:
parent
6375e62775
commit
02d753e346
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ static void do_hint(struct PicoVideo *pv)
|
|||
pv->pending_ints |= 0x10;
|
||||
if (pv->reg[0] & 0x10) {
|
||||
elprintf(EL_INTS, "hint: @ %06x [%u]", SekPc, SekCyclesDone());
|
||||
SekInterrupt(4);
|
||||
if (SekIrqLevel < 4)
|
||||
SekInterrupt(4);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue