diff options
Diffstat (limited to 'hw')
-rw-r--r-- | hw/dma.c | 2 | ||||
-rw-r--r-- | hw/mac_dbdma.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -449,7 +449,7 @@ void DMA_schedule(int nchan) { CPUState *env = cpu_single_env; if (env) - cpu_interrupt(env, CPU_INTERRUPT_EXIT); + cpu_exit(env); } static void dma_reset(void *opaque) diff --git a/hw/mac_dbdma.c b/hw/mac_dbdma.c index 8e82a2356c..b8e4b128d4 100644 --- a/hw/mac_dbdma.c +++ b/hw/mac_dbdma.c @@ -653,7 +653,7 @@ void DBDMA_schedule(void) { CPUState *env = cpu_single_env; if (env) - cpu_interrupt(env, CPU_INTERRUPT_EXIT); + cpu_exit(env); } static void |