feat(ppu): implement all i/o writes

This commit is contained in:
2022-10-30 02:36:46 -03:00
parent c9a423d094
commit 472215b4c2
5 changed files with 81 additions and 33 deletions

View File

@@ -12,7 +12,7 @@ const Noise = @import("apu/Noise.zig");
const SoundFifo = std.fifo.LinearFifo(u8, .{ .Static = 0x20 });
const getHalf = util.shift;
const getHalf = util.getHalf;
const setHalf = util.setHalf;
const intToBytes = util.intToBytes;