make sure interrupt is checked immediately after current instruction
| 2414 | |
| 2415 | // make sure interrupt is checked immediately after current instruction |
| 2416 | void checkint() |
| 2417 | { |
| 2418 | doint(); |
| 2419 | if (!m68k_accurate_ipl && !currprefs.cachesize && !(regs.spcflags & SPCFLAG_INT) && (regs.spcflags & SPCFLAG_DOINT)) { |
| 2420 | set_special(SPCFLAG_INT); |
| 2421 | } |
| 2422 | } |
| 2423 | |
| 2424 | void REGPARAM2 MakeSR() |
| 2425 | { |