1
0
mirror of https://github.com/simh/simh.git synced 2026-02-06 00:15:40 +00:00

SCP: Added the capability for EXAMINE command output to be written directly to a socket.

This commit is contained in:
Mark Pizzolato
2015-02-21 12:40:36 -08:00
parent f5cd5439f5
commit e768629009
34 changed files with 185 additions and 20 deletions

View File

@@ -117,6 +117,11 @@ if (flag == 1) return ssem_dump(fi);
return ssem_load_dmp(fi);
}
/* Use scp.c provided fprintf function */
#define fprintf Fprintf
#define fputs(_s,f) Fprintf(f,"%s",_s)
#define fputc(_c,f) Fprintf(f,"%c",_c)
/* Utility routine - prints number in decimal */
t_stat ssem_fprint_decimal (FILE *of, uint32 inst)