The SuperH-3, part 7: Bitwise logical operations

1 · Raymond Chen · Aug. 13, 2019, 3:15 p.m.
The SH-3 has a rather basic collection of bitwise logical operations. AND Rm, Rn ; Rn &= Rm AND #imm, r0 ; r0 &= unsigned 8-bit immediate OR Rm, Rn ; Rn |= Rm OR #imm, r0 ; r0 |= unsigned 8-bit immediate XOR Rm, The post The SuperH-3, part 7: Bitwise logical operations appeared first on The Old New Thing....