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:
parent
3ec3e3aa8f
commit
f06ba22c6c
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ DEVICE *sim_devices[] = {
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
const char *sim_stop_messages[] = {
|
const char *sim_stop_messages[SCPE_BASE] = {
|
||||||
"Unknown error",
|
"Unknown error",
|
||||||
"Unknown I/O Instruction",
|
"Unknown I/O Instruction",
|
||||||
"HALT instruction",
|
"HALT instruction",
|
||||||
|
|
Loading…
Add table
Reference in a new issue