Turns out that andi and andis only have . forms. Fixed; another test passes.
This commit is contained in:
parent
78eaf836be
commit
7ec9f54679
|
@ -107,8 +107,8 @@
|
|||
|
||||
# Logical instructions
|
||||
|
||||
<28--><RS-><RA-><UI------------> cpu.gpr[RA] = reg(RS) & UI;
|
||||
<29--><RS-><RA-><UI------------> cpu.gpr[RA] = reg(RS) & (UI<<16);
|
||||
<28--><RS-><RA-><UI------------> setcr0(1, cpu.gpr[RA] = reg(RS) & UI);
|
||||
<29--><RS-><RA-><UI------------> setcr0(1, cpu.gpr[RA] = reg(RS) & (UI<<16));
|
||||
<24--><RS-><RA-><UI------------> cpu.gpr[RA] = reg(RS) | UI;
|
||||
<25--><RS-><RA-><UI------------> cpu.gpr[RA] = reg(RS) | (UI<<16);
|
||||
<26--><RS-><RA-><UI------------> cpu.gpr[RA] = reg(RS) ^ UI;
|
||||
|
|
Loading…
Reference in a new issue