Turns out that andi and andis only have . forms. Fixed; another test passes.

This commit is contained in:
David Given 2018-06-17 10:43:39 +02:00
parent 78eaf836be
commit 7ec9f54679

View file

@ -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;