1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 15:27:46 +00:00

SCELBI: Add missing array bound in sim_stop_messages array

Somehow this simulator got missed when this change was made for all
other simulators.
This commit is contained in:
Mark Pizzolato 2022-11-27 10:17:44 -10:00 committed by Paul Koning
parent 3ec3e3aa8f
commit f06ba22c6c

View File

@ -62,7 +62,7 @@ DEVICE *sim_devices[] = {
NULL
};
const char *sim_stop_messages[] = {
const char *sim_stop_messages[SCPE_BASE] = {
"Unknown error",
"Unknown I/O Instruction",
"HALT instruction",