1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 23:37:13 +00:00

SCP: Properly allow all debug option switches (EBCDIC and RAD50 text)

This commit is contained in:
Mark Pizzolato 2019-03-26 01:39:13 -07:00
parent 9c75a7bfaa
commit b59ad75217

View File

@ -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;