feat: implement Timers

This commit is contained in:
2022-10-21 05:12:26 -03:00
parent 15191aedca
commit e3e45cd129
4 changed files with 219 additions and 17 deletions

View File

@@ -27,7 +27,7 @@ pub fn init(alloc: Allocator, sched: *Scheduler, rom_path: []const u8, maybe_bio
.ppu = try Ppu.init(alloc, sched),
.iwram = try Iwram.init(alloc),
.ewram = try Ewram.init(alloc),
.io = Io.init(),
.io = Io.init(sched),
};
}