BPL - Branch if Positive
(info *stepInfo)
| 599 | |
| 600 | // BPL - Branch if Positive |
| 601 | func (cpu *CPU) bpl(info *stepInfo) { |
| 602 | if cpu.N == 0 { |
| 603 | cpu.PC = info.address |
| 604 | cpu.addBranchCycles(info) |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | // BRK - Force Interrupt |
| 609 | func (cpu *CPU) brk(info *stepInfo) { |
nothing calls this directly
no test coverage detected