1
0
mirror of https://github.com/simh/simh.git synced 2026-04-14 07:50:15 +00:00

SCP: Convert more SHOW and debug output to use sim_vm_interval_units

This commit is contained in:
Mark Pizzolato
2020-03-08 11:43:30 -07:00
parent b2272c8cd6
commit 0170b7c6ab
5 changed files with 27 additions and 25 deletions

4
scp.h
View File

@@ -365,7 +365,6 @@ extern int32 sim_switches;
extern int32 sim_switch_number;
extern int32 sim_quiet;
extern int32 sim_step;
extern const char *sim_vm_step_units; /* Simulator can change this */
extern t_stat sim_last_cmd_stat; /* Command Status */
extern FILE *sim_log; /* log file */
extern FILEREF *sim_log_ref; /* log file file reference */
@@ -430,7 +429,8 @@ extern t_bool (*sim_vm_fprint_stopped) (FILE *st, t_stat reason);
extern t_value (*sim_vm_pc_value) (void);
extern t_bool (*sim_vm_is_subroutine_call) (t_addr **ret_addrs);
extern const char **sim_clock_precalibrate_commands;
extern const char *sim_vm_interval_units;
extern const char *sim_vm_interval_units; /* Simulator can change this - default "instructions" */
extern const char *sim_vm_step_unit; /* Simulator can change this - default "instruction" */
/* Core SCP libraries can potentially have unit test routines.