swtp6800: Fix inconsistent indentation block

This commit is contained in:
Mark Pizzolato 2020-01-01 08:35:37 -08:00
parent 28dad5782c
commit a314cb680b

View file

@ -318,11 +318,11 @@ t_stat sim_instr (void)
if (sim_interval <= 0) /* check clock queue */
if ((reason = sim_process_event ()))
break;
if (mem_fault) { /* memory fault? */
mem_fault = 0; /* reset fault flag */
reason = STOP_MEMORY;
break;
}
if (mem_fault) { /* memory fault? */
mem_fault = 0; /* reset fault flag */
reason = STOP_MEMORY;
break;
}
if (int_req > 0) { /* interrupt? */
/* 6800 interrupts not implemented yet. None were used,
on a standard SWTP 6800. All I/O is programmed. */