1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-26 04:02:39 +00:00

Added display of large file support status to SHOW VERSION

This commit is contained in:
Mark Pizzolato
2013-02-17 04:52:54 -08:00
parent 119ca2f03a
commit aaa5fb178a
3 changed files with 10 additions and 2 deletions

4
scp.c
View File

@@ -2741,11 +2741,11 @@ if (vdelt)
fprintf (st, " %s", SIM_VERSION_MODE);
#endif
if (flag)
fprintf (st, " [%s, %s, %s]", sim_si64, sim_sa64, sim_snet);
fprintf (st, "\n\t[%s, %s, %s, %s]", sim_si64, sim_sa64, sim_snet, sim_slarge_files);
#if defined(SIM_GIT_COMMIT_ID)
#define _xstr(a) _str(a)
#define _str(a) #a
fprintf (st, " git commit id: %8.8s", _xstr(SIM_GIT_COMMIT_ID));
fprintf (st, "%sgit commit id: %8.8s", flag ? "\n " : " ", _xstr(SIM_GIT_COMMIT_ID));
#endif
fprintf (st, "\n");
return SCPE_OK;