1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +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:19:29 -10:00
parent fd2df7607f
commit 6fdc5a2a2b

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",