1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-14 07:40:35 +00:00

VAX8200: Standardize model output strings for consistency

This commit is contained in:
Mark Pizzolato 2020-03-25 14:34:46 -07:00
parent 487e78ef36
commit 998f2a5254

View File

@ -811,7 +811,7 @@ return SCPE_OK;
t_stat cpu_print_model (FILE *st)
{
fprintf (st, "model=%s", (sys_model ? "8250" : "8200"));
fprintf (st, "VAX %s", (sys_model ? "8250" : "8200"));
return SCPE_OK;
}