From b59ad75217b23eac7958510ee88c17b556e2de93 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 26 Mar 2019 01:39:13 -0700 Subject: [PATCH] SCP: Properly allow all debug option switches (EBCDIC and RAD50 text) --- sim_console.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sim_console.c b/sim_console.c index d482fa4b..ba2d670a 100644 --- a/sim_console.c +++ b/sim_console.c @@ -2271,7 +2271,8 @@ sim_deb_switches = sim_switches & (SWMASK ('R') | SWMASK ('P') | SWMASK ('T') | SWMASK ('A') | SWMASK ('F') | SWMASK ('N') | - SWMASK ('B')); /* save debug switches */ + SWMASK ('B') | SWMASK ('E') | + SWMASK ('D') ); /* save debug switches */ if (sim_deb_switches & SWMASK ('R')) { struct tm loc_tm, gmt_tm; time_t time_t_now;