1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-02 22:33:04 +00:00

Added display of VHD and RAW disk access capabilities to the output of SHOW VERSION

This commit is contained in:
Mark Pizzolato
2013-02-19 09:44:23 -08:00
parent 631999692b
commit 3d3f757991
3 changed files with 19 additions and 3 deletions

4
scp.c
View File

@@ -2746,6 +2746,10 @@ if (flag) {
fprintf (st, "\n\t\t%s", sim_sa64);
fprintf (st, "\n\t\t%s", sim_snet);
fprintf (st, "\n\t\t%s", sim_taddr_64 ? "Large File (>2GB) support" : "No Large File support");
if (sim_disk_vhd_support())
fprintf (st, "\n\t\tVirtual Hard Disk (VHD) support");
if (sim_disk_raw_support())
fprintf (st, "\n\t\tRAW disk and CD/DVD ROM support");
#if defined (SIM_ASYNCH_IO)
fprintf (st, "\n\t\tAsynchronous I/O support");
#endif