SEC - Set Carry Flag
(info *stepInfo)
| 852 | |
| 853 | // SEC - Set Carry Flag |
| 854 | func (cpu *CPU) sec(info *stepInfo) { |
| 855 | cpu.C = 1 |
| 856 | } |
| 857 | |
| 858 | // SED - Set Decimal Flag |
| 859 | func (cpu *CPU) sed(info *stepInfo) { |
nothing calls this directly
no outgoing calls
no test coverage detected