1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-04 23:25:46 +00:00

PDP11, VAX: Provide a useful error message when the unimplemented DUMP command is attempted.

This commit is contained in:
Mark Pizzolato
2016-01-25 16:21:54 -08:00
parent c8c071e3e1
commit a9cc1f1c68
8 changed files with 10 additions and 8 deletions

View File

@@ -122,7 +122,7 @@ int32 val;
uint32 origin, limit;
if (flag) /* dump? */
return SCPE_ARG;
return sim_messagef (SCPE_NOFNC, "Command Not Implemented\n");
origin = 0; /* memory */
limit = (uint32) cpu_unit.capac;
if (sim_switches & SWMASK ('O')) { /* origin? */