1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-25 11:55:43 +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

View File

@@ -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