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