-
|
i know this is probably blasphemy but is there a way to make Moira execute the interrupt exception immediately and not queue it? for example, in Musashi this is achieved by adding m68ki_check_interrupts(); to the end of m68k_set_irq(level) so as soon as its set it executes. i tried this in moira a few ways but it still doesn't seem to happen. |
Beta Was this translation helpful? Give feedback.
Answered by
RR7
Jan 10, 2025
Replies: 1 comment
-
|
Never mind, it was just my arch-nemesis, Lord Prefetch, striking again. add a fullPrefetch before the interrupt made it work as expected. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RR7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Never mind, it was just my arch-nemesis, Lord Prefetch, striking again. add a fullPrefetch before the interrupt made it work as expected.