1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 11:46:37 +00:00

Visual Studio Projects: Added support for building under Visual Studio Community (2015)

Release build binaries built under Visual Studio Community DO NOT run on Windows XP.

Fix: #233
This commit is contained in:
Mark Pizzolato
2015-08-19 11:16:47 -07:00
parent 77152c6e20
commit 15736aeec3
4 changed files with 12 additions and 3 deletions

View File

@@ -2724,7 +2724,7 @@ if (cptr) {
else dlnt = 2;
bpa = ad << val;
if (virt && map_reloc (bpa, VNT, &bpa))
fprintf (of, "Virtual address %-X: memory management error\n");
fprintf (of, "Virtual address %-X: memory management error\n", ad);
else fprintf (of, "%s %s %-X: physical %s %-X\n",
((virt)? "Virtual": "Physical"), lnt_str[val], ad, lnt_str[dlnt], bpa >> dlnt);
return SCPE_OK;