feat(cpu): implement skipBios method

This commit is contained in:
2022-01-02 14:58:39 -06:00
parent eb37d73cb2
commit dee0e113d8
3 changed files with 16 additions and 1 deletions

View File

@@ -27,6 +27,8 @@ pub fn main() anyerror!void {
var scheduler = Scheduler.init(alloc);
var cpu = Arm7tdmi.init(&scheduler, &bus);
cpu.skipBios();
while (true) {
emu.runFrame(&scheduler, &cpu, &bus);
}