From a314cb680bf79afb38cafb585c3026a2d54493b5 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 1 Jan 2020 08:35:37 -0800 Subject: [PATCH] swtp6800: Fix inconsistent indentation block --- swtp6800/common/m6800.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/swtp6800/common/m6800.c b/swtp6800/common/m6800.c index d5b53e2d..f0ad2b22 100644 --- a/swtp6800/common/m6800.c +++ b/swtp6800/common/m6800.c @@ -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. */