Compare commits
No commits in common. "d798aea6eaa0523e8a96051b844e3e83f3be9572" and "887bd89668e248f907664908dd7da14bed8deef0" have entirely different histories.
d798aea6ea
...
887bd89668
|
@ -182,12 +182,10 @@ fn DmaController(comptime id: u2) type {
|
|||
const transfer_type = is_fifo or self.cnt.transfer_type.read();
|
||||
const offset: u32 = if (transfer_type) @sizeOf(u32) else @sizeOf(u16);
|
||||
|
||||
const mask = if (transfer_type) ~@as(u32, 3) else ~@as(u32, 1);
|
||||
|
||||
if (transfer_type) {
|
||||
cpu.bus.write(u32, self._dad & mask, cpu.bus.read(u32, self._sad & mask));
|
||||
cpu.bus.write(u32, self._dad, cpu.bus.read(u32, self._sad));
|
||||
} else {
|
||||
cpu.bus.write(u16, self._dad & mask, cpu.bus.read(u16, self._sad & mask));
|
||||
cpu.bus.write(u16, self._dad, cpu.bus.read(u16, self._sad));
|
||||
}
|
||||
|
||||
switch (sad_adj) {
|
||||
|
|
23
src/ppu.zig
23
src/ppu.zig
|
@ -658,8 +658,11 @@ const Palette = struct {
|
|||
switch (T) {
|
||||
u32, u16 => std.mem.writeIntSliceLittle(T, self.buf[addr..][0..@sizeOf(T)], value),
|
||||
u8 => {
|
||||
const align_addr = addr & ~@as(u32, 1); // Aligned to Halfword boundary
|
||||
std.mem.writeIntSliceLittle(u16, self.buf[align_addr..][0..@sizeOf(u16)], @as(u16, value) * 0x101);
|
||||
const halfword: u16 = @as(u16, value) * 0x0101;
|
||||
// FIXME: I don't think my comment here makes sense?
|
||||
const weird_addr = addr & ~@as(u32, 1); // *was* 8-bit read so address won't be aligned
|
||||
|
||||
std.mem.writeIntSliceLittle(u16, self.buf[weird_addr..(weird_addr + @sizeOf(u16))], halfword);
|
||||
},
|
||||
else => @compileError("PALRAM: Unsupported write width"),
|
||||
}
|
||||
|
@ -702,19 +705,21 @@ const Vram = struct {
|
|||
|
||||
pub fn write(self: *Self, comptime T: type, dispcnt: io.DisplayControl, address: usize, value: T) void {
|
||||
const mode: u3 = dispcnt.bg_mode.read();
|
||||
const idx = Self.mirror(address);
|
||||
const addr = Self.mirror(address);
|
||||
|
||||
switch (T) {
|
||||
u32, u16 => std.mem.writeIntSliceLittle(T, self.buf[idx..][0..@sizeOf(T)], value),
|
||||
u32, u16 => std.mem.writeIntSliceLittle(T, self.buf[addr..][0..@sizeOf(T)], value),
|
||||
u8 => {
|
||||
// Ignore write if it falls within the boundaries of OBJ VRAM
|
||||
// Ignore if write is in OBJ
|
||||
switch (mode) {
|
||||
0, 1, 2 => if (0x0001_0000 <= idx) return,
|
||||
else => if (0x0001_4000 <= idx) return,
|
||||
0, 1, 2 => if (0x0601_0000 <= address and address < 0x0601_8000) return,
|
||||
else => if (0x0601_4000 <= address and address < 0x0601_8000) return,
|
||||
}
|
||||
|
||||
const align_idx = idx & ~@as(u32, 1); // Aligned to a halfword boundary
|
||||
std.mem.writeIntSliceLittle(u16, self.buf[align_idx..][0..@sizeOf(u16)], @as(u16, value) * 0x101);
|
||||
const halfword: u16 = @as(u16, value) * 0x0101;
|
||||
const weird_addr = addr & ~@as(u32, 1);
|
||||
|
||||
std.mem.writeIntSliceLittle(u16, self.buf[weird_addr..(weird_addr + @sizeOf(u16))], halfword);
|
||||
},
|
||||
else => @compileError("VRAM: Unsupported write width"),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue