commit 70ccb4f
Devine Lu Linvega
·
2022-06-12 21:13:07 +0000 UTC
parent 5b96cef
Removed err4
2 files changed,
+2,
-3
+1,
-2
1@@ -17,8 +17,7 @@ WITH REGARD TO THIS SOFTWARE.
2 static const char *errors[] = {
3 "underflow",
4 "overflow",
5- "division by zero",
6- "busy"
7+ "division by zero"
8 };
9
10 static void
+1,
-1
1@@ -88,7 +88,7 @@ uxn_eval(Uxn *u, Uint16 pc)
2 case 0x1f: /* SFT */ POP8(a) POP(b) PUSH(src, b >> (a & 0x0f) << ((a & 0xf0) >> 4)) break;
3 }
4 }
5- return (u->wst->ptr || u->rst->ptr) ? uxn_halt(u, instr, 4, pc - 1) : 1;
6+ return 1;
7 err:
8 return uxn_halt(u, instr, errcode, pc - 1);
9 }