gameboy superoptimizer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

24 lines
326 B

from tests.insn.helpers import *
def test_ccf():
cpu = CPU()
CCF().exec(cpu)
assert cpu.carry == 1
assert cpu.cycles == 4
CCF().exec(cpu)
assert cpu.carry == 0
assert cpu.cycles == 8
def test_scf():
cpu = CPU()
SCF().exec(cpu)
assert cpu.carry == 1
assert cpu.cycles == 4