summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/nec/v25.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/nec/v25.c')
-rw-r--r--src/emu/cpu/nec/v25.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/nec/v25.c b/src/emu/cpu/nec/v25.c
index 140ed9da766..a598a7160b4 100644
--- a/src/emu/cpu/nec/v25.c
+++ b/src/emu/cpu/nec/v25.c
@@ -367,7 +367,7 @@ static void set_irq_line(v25_state_t *nec_state, int irqline, int state)
if (state == CLEAR_LINE)
nec_state->pending_irq &= ~INT_IRQ;
else
- {
+ {
nec_state->pending_irq |= INT_IRQ;
nec_state->halted = 0;
}
@@ -532,7 +532,7 @@ static CPU_EXECUTE( v25 )
debugger_instruction_hook(device, (Sreg(PS)<<4) + nec_state->ip);
return;
}
-
+
while(nec_state->icount>0) {
/* Dispatch IRQ */
if (nec_state->no_interrupt==0 && (nec_state->pending_irq & nec_state->unmasked_irq))