Remove FLAG_SHORT.
This commit is contained in:
parent
a0f54f118b
commit
7761c3ee94
|
@ -132,14 +132,11 @@ lituxn(Uxn *u, Uint8 instr)
|
|||
void
|
||||
opcuxn(Uxn *u, Uint8 instr)
|
||||
{
|
||||
Uint8 op = instr & 0x1f, freturn;
|
||||
setflag(&u->status, FLAG_SHORT, (instr >> 5) & 1);
|
||||
Uint8 op = instr & 0x3f, freturn;
|
||||
setflag(&u->status, FLAG_RETURN, (instr >> 6) & 1);
|
||||
freturn = getflag(&u->status, FLAG_RETURN);
|
||||
u->src = freturn ? &u->rst : &u->wst;
|
||||
u->dst = freturn ? &u->wst : &u->rst;
|
||||
if(getflag(&u->status, FLAG_SHORT))
|
||||
op += 32;
|
||||
(*ops[op])(u);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue