feat: implement Oam buffer
This commit is contained in:
7
src/core/ppu/Oam.zig
Normal file
7
src/core/ppu/Oam.zig
Normal file
@@ -0,0 +1,7 @@
|
||||
const KiB = 0x400;
|
||||
|
||||
buf: [2 * KiB]u8,
|
||||
|
||||
pub fn init(self: *@This()) void {
|
||||
@memset(self.buf[0..], 0);
|
||||
}
|
||||
Reference in New Issue
Block a user