BCS - Branch if Carry Set
(info *stepInfo)
| 559 | |
| 560 | // BCS - Branch if Carry Set |
| 561 | func (cpu *CPU) bcs(info *stepInfo) { |
| 562 | if cpu.C != 0 { |
| 563 | cpu.PC = info.address |
| 564 | cpu.addBranchCycles(info) |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | // BEQ - Branch if Equal |
| 569 | func (cpu *CPU) beq(info *stepInfo) { |
nothing calls this directly
no test coverage detected