retro-extend (c) now displays an error on err:notfound
FossilOrigin-Name: 4134203f3482f7a2cd2732b3e0ad27a2c1d253bbd16cc90b4763b1e1f570a027
This commit is contained in:
parent
fc63c184ca
commit
5daee185ec
1 changed files with 3 additions and 0 deletions
|
@ -254,6 +254,9 @@ void execute(CELL cell) {
|
|||
ip = cell;
|
||||
while (ip < IMAGE_SIZE) {
|
||||
opcode = memory[ip];
|
||||
if (ip == notfound) {
|
||||
printf("%s ?\n", string_extract(1025));
|
||||
}
|
||||
if (ngaValidatePackedOpcodes(opcode) != 0) {
|
||||
ngaProcessPackedOpcodes(opcode);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue