BVS - Branch if Overflow Set
(info *stepInfo)
| 623 | |
| 624 | // BVS - Branch if Overflow Set |
| 625 | func (cpu *CPU) bvs(info *stepInfo) { |
| 626 | if cpu.V != 0 { |
| 627 | cpu.PC = info.address |
| 628 | cpu.addBranchCycles(info) |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | // CLC - Clear Carry Flag |
| 633 | func (cpu *CPU) clc(info *stepInfo) { |
nothing calls this directly
no test coverage detected