EOR - Exclusive OR
(info *stepInfo)
| 688 | |
| 689 | // EOR - Exclusive OR |
| 690 | func (cpu *CPU) eor(info *stepInfo) { |
| 691 | cpu.A = cpu.A ^ cpu.Read(info.address) |
| 692 | cpu.setZN(cpu.A) |
| 693 | } |
| 694 | |
| 695 | // INC - Increment Memory |
| 696 | func (cpu *CPU) inc(info *stepInfo) { |