Newer
Older
from time import time
from boytacean import GameBoy
FRAME_COUNT = 12000
gb = GameBoy(apu_enabled=False)
gb.load()
gb.load_rom("../../res/roms/demo/pocket.gb")
total = time() - start
print(f"Time taken: {total} seconds")
print(f"Speedup: {FRAME_COUNT / total / 60}x")