1
0
mirror of https://github.com/simh/simh.git synced 2026-02-22 15:18:41 +00:00

SCP: Add global variable with the program name

Included from Dave Bryan's V3.11 extensions
This commit is contained in:
Mark Pizzolato
2019-12-28 11:00:59 -08:00
parent 7642d29f2c
commit e611e0ceed
2 changed files with 4 additions and 1 deletions

3
scp.h
View File

@@ -388,7 +388,8 @@ extern uint32 sim_brk_dflt;
extern uint32 sim_brk_summ;
extern uint32 sim_brk_match_type;
extern t_addr sim_brk_match_addr;
extern BRKTYPTAB *sim_brk_type_desc; /* type descriptions */
extern BRKTYPTAB *sim_brk_type_desc; /* type descriptions */
extern const char *sim_prog_name; /* executable program name */
extern FILE *stdnul;
extern t_bool sim_asynch_enabled;
#if defined(SIM_ASYNCH_IO)