(cores/abc) Removed unreachable case

This commit is contained in:
Devine Lu Linvega 2024-02-18 21:24:21 -08:00
parent d9861c1a04
commit 124d0bf193
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ uxn_eval(Uxn *u, Uint16 pc)
/* r */ Stack *s = ins & 0x40 ? &u->rst : &u->wst;
/* k */ if(ins & 0x80) kp = s->ptr, sp = &kp; else sp = &s->ptr;
switch(ins & 0x1f) {
case 0x00: case 0x20:
case 0x00:
switch(ins) {
case 0x00: /* BRK */ return 1;
case 0x20: /* JCI */ POP1(b) if(!b) { pc += 2; break; }