mirror of
https://github.com/open-simh/simh.git
synced 2026-01-14 15:46:31 +00:00
Added display of large file support status to SHOW VERSION
This commit is contained in:
parent
119ca2f03a
commit
aaa5fb178a
4
scp.c
4
scp.c
@ -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;
|
||||
|
||||
@ -364,3 +364,10 @@ return (t_addr)(ftell (st));
|
||||
#endif
|
||||
|
||||
uint32 sim_taddr_64 = _SIM_IO_FSEEK_EXT_;
|
||||
|
||||
const char *sim_slarge_files =
|
||||
#if _SIM_IO_FSEEK_EXT == 1
|
||||
"Large File (>2GB) support";
|
||||
#else
|
||||
"No Large File support";
|
||||
#endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user