Removed err4

This commit is contained in:
Devine Lu Linvega 2022-06-12 14:13:07 -07:00
parent 5b96cefb3a
commit 70ccb4fa68
2 changed files with 2 additions and 3 deletions

View File

@ -17,8 +17,7 @@ WITH REGARD TO THIS SOFTWARE.
static const char *errors[] = {
"underflow",
"overflow",
"division by zero",
"busy"
"division by zero"
};
static void

View File

@ -88,7 +88,7 @@ uxn_eval(Uxn *u, Uint16 pc)
case 0x1f: /* SFT */ POP8(a) POP(b) PUSH(src, b >> (a & 0x0f) << ((a & 0xf0) >> 4)) break;
}
}
return (u->wst->ptr || u->rst->ptr) ? uxn_halt(u, instr, 4, pc - 1) : 1;
return 1;
err:
return uxn_halt(u, instr, errcode, pc - 1);
}