2022-10-21 08:11:50 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
const Bios = @import("bus/Bios.zig");
|
2022-10-21 08:11:53 +00:00
|
|
|
const Ewram = @import("bus/Ewram.zig");
|
2022-10-21 08:11:50 +00:00
|
|
|
const GamePak = @import("bus/GamePak.zig");
|
2022-10-21 08:11:50 +00:00
|
|
|
const Io = @import("bus/io.zig").Io;
|
2022-10-21 08:11:53 +00:00
|
|
|
const Iwram = @import("bus/Iwram.zig");
|
2022-10-21 08:11:50 +00:00
|
|
|
const Ppu = @import("ppu.zig").Ppu;
|
2022-10-21 08:11:50 +00:00
|
|
|
const Scheduler = @import("scheduler.zig").Scheduler;
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
const Allocator = std.mem.Allocator;
|
2022-10-21 08:12:18 +00:00
|
|
|
const log = std.log.scoped(.Bus);
|
2022-10-21 08:11:51 +00:00
|
|
|
const Self = @This();
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
pak: GamePak,
|
|
|
|
bios: Bios,
|
|
|
|
ppu: Ppu,
|
2022-10-21 08:11:53 +00:00
|
|
|
iwram: Iwram,
|
|
|
|
ewram: Ewram,
|
2022-10-21 08:11:50 +00:00
|
|
|
io: Io,
|
|
|
|
|
2022-10-21 08:12:13 +00:00
|
|
|
pub fn init(alloc: Allocator, sched: *Scheduler, rom_path: []const u8, maybe_bios: ?[]const u8) !Self {
|
2022-10-21 08:11:51 +00:00
|
|
|
return Self{
|
2022-10-21 08:12:13 +00:00
|
|
|
.pak = try GamePak.init(alloc, rom_path),
|
|
|
|
.bios = try Bios.init(alloc, maybe_bios),
|
2022-10-21 08:11:50 +00:00
|
|
|
.ppu = try Ppu.init(alloc, sched),
|
2022-10-21 08:11:53 +00:00
|
|
|
.iwram = try Iwram.init(alloc),
|
|
|
|
.ewram = try Ewram.init(alloc),
|
2022-10-21 08:11:50 +00:00
|
|
|
.io = Io.init(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn deinit(self: Self) void {
|
2022-10-21 08:11:53 +00:00
|
|
|
self.iwram.deinit();
|
|
|
|
self.ewram.deinit();
|
2022-10-21 08:11:50 +00:00
|
|
|
self.pak.deinit();
|
|
|
|
self.bios.deinit();
|
|
|
|
self.ppu.deinit();
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn read32(self: *const Self, addr: u32) u32 {
|
2022-10-21 08:11:50 +00:00
|
|
|
return switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0000_0000...0x0000_3FFF => self.bios.get32(addr),
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.get32(addr - 0x0200_0000),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.get32(addr - 0x0300_0000),
|
2022-10-21 08:11:54 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.read32(addr),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// Internal Display Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0500_0000...0x0500_03FF => self.ppu.palette.get32(addr - 0x0500_0000),
|
|
|
|
0x0600_0000...0x0601_7FFF => self.ppu.vram.get32(addr - 0x0600_0000),
|
2022-10-21 08:12:19 +00:00
|
|
|
0x0700_0000...0x0700_03FF => self.ppu.oam.get32(addr - 0x0700_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// External Memory (Game Pak)
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0800_0000...0x09FF_FFFF => self.pak.get32(addr - 0x0800_0000),
|
|
|
|
0x0A00_0000...0x0BFF_FFFF => self.pak.get32(addr - 0x0A00_0000),
|
|
|
|
0x0C00_0000...0x0DFF_FFFF => self.pak.get32(addr - 0x0C00_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
else => {
|
2022-10-21 08:12:18 +00:00
|
|
|
log.warn("32-bit read from 0x{X:0>8}", .{addr});
|
2022-10-21 08:11:50 +00:00
|
|
|
return 0x0000_0000;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn write32(self: *Self, addr: u32, word: u32) void {
|
2022-10-21 08:11:50 +00:00
|
|
|
// TODO: write32 can write to GamePak Flash
|
|
|
|
|
|
|
|
switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.set32(addr - 0x0200_0000, word),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.set32(addr - 0x0300_0000, word),
|
2022-10-21 08:11:54 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.write32(addr, word),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// Internal Display Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0500_0000...0x0500_03FF => self.ppu.palette.set32(addr - 0x0500_0000, word),
|
|
|
|
0x0600_0000...0x0601_7FFF => self.ppu.vram.set32(addr - 0x0600_0000, word),
|
2022-10-21 08:12:19 +00:00
|
|
|
0x0700_0000...0x0700_03FF => self.ppu.oam.set32(addr - 0x0700_0000, word),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
2022-10-21 08:12:18 +00:00
|
|
|
else => log.warn("32-bit write of 0x{X:0>8} to 0x{X:0>8}", .{ word, addr }),
|
2022-10-21 08:11:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn read16(self: *const Self, addr: u32) u16 {
|
2022-10-21 08:11:50 +00:00
|
|
|
return switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0000_0000...0x0000_3FFF => self.bios.get16(addr),
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.get16(addr - 0x0200_0000),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.get16(addr - 0x0300_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.read16(addr),
|
|
|
|
|
|
|
|
// Internal Display Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0500_0000...0x0500_03FF => self.ppu.palette.get16(addr - 0x0500_0000),
|
|
|
|
0x0600_0000...0x0601_7FFF => self.ppu.vram.get16(addr - 0x0600_0000),
|
2022-10-21 08:12:19 +00:00
|
|
|
0x0700_0000...0x0700_03FF => self.ppu.oam.get16(addr - 0x0700_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// External Memory (Game Pak)
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0800_0000...0x09FF_FFFF => self.pak.get16(addr - 0x0800_0000),
|
|
|
|
0x0A00_0000...0x0BFF_FFFF => self.pak.get16(addr - 0x0A00_0000),
|
|
|
|
0x0C00_0000...0x0DFF_FFFF => self.pak.get16(addr - 0x0C00_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
else => {
|
2022-10-21 08:12:18 +00:00
|
|
|
log.warn("16-bit read from 0x{X:0>8}", .{addr});
|
2022-10-21 08:11:50 +00:00
|
|
|
return 0x0000;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn write16(self: *Self, addr: u32, halfword: u16) void {
|
2022-10-21 08:11:50 +00:00
|
|
|
// TODO: write16 can write to GamePak Flash
|
|
|
|
switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.set16(addr - 0x0200_0000, halfword),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.set16(addr - 0x0300_0000, halfword),
|
2022-10-21 08:11:50 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.write16(addr, halfword),
|
|
|
|
|
|
|
|
// Internal Display Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0500_0000...0x0500_03FF => self.ppu.palette.set16(addr - 0x0500_0000, halfword),
|
|
|
|
0x0600_0000...0x0601_7FFF => self.ppu.vram.set16(addr - 0x0600_0000, halfword),
|
2022-10-21 08:12:19 +00:00
|
|
|
0x0700_0000...0x0700_03FF => self.ppu.oam.set16(addr - 0x0700_0000, halfword),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
2022-10-21 08:12:18 +00:00
|
|
|
else => log.warn("16-bit write of 0x{X:0>4} to 0x{X:0>8}", .{ halfword, addr }),
|
2022-10-21 08:11:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:51 +00:00
|
|
|
pub fn read8(self: *const Self, addr: u32) u8 {
|
2022-10-21 08:11:50 +00:00
|
|
|
return switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0000_0000...0x0000_3FFF => self.bios.get8(addr),
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.get8(addr - 0x0200_0000),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.get8(addr - 0x0300_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.read8(addr),
|
|
|
|
|
|
|
|
// Internal Display Memory
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0500_0000...0x0500_03FF => self.ppu.palette.get8(addr - 0x0500_0000),
|
|
|
|
0x0600_0000...0x0601_7FFF => self.ppu.vram.get8(addr - 0x0600_0000),
|
2022-10-21 08:12:19 +00:00
|
|
|
0x0700_0000...0x0700_03FF => self.ppu.oam.get8(addr - 0x0700_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// External Memory (Game Pak)
|
2022-10-21 08:12:16 +00:00
|
|
|
0x0800_0000...0x09FF_FFFF => self.pak.get8(addr - 0x0800_0000),
|
|
|
|
0x0A00_0000...0x0BFF_FFFF => self.pak.get8(addr - 0x0A00_0000),
|
|
|
|
0x0C00_0000...0x0DFF_FFFF => self.pak.get8(addr - 0x0C00_0000),
|
2022-10-21 08:11:50 +00:00
|
|
|
0x0E00_0000...0x0E00_FFFF => std.debug.panic("[Bus:8] read from 0x{X:} in Game Pak SRAM", .{addr}),
|
|
|
|
|
|
|
|
else => {
|
2022-10-21 08:12:18 +00:00
|
|
|
log.warn("8-bit read from 0x{X:0>8}", .{addr});
|
2022-10-21 08:11:50 +00:00
|
|
|
return 0x00;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-21 08:11:53 +00:00
|
|
|
pub fn write8(self: *Self, addr: u32, byte: u8) void {
|
2022-10-21 08:11:50 +00:00
|
|
|
switch (addr) {
|
|
|
|
// General Internal Memory
|
2022-10-21 08:11:53 +00:00
|
|
|
0x0200_0000...0x0203_FFFF => self.iwram.set8(addr - 0x0200_0000, byte),
|
|
|
|
0x0300_0000...0x0300_7FFF => self.ewram.set8(addr - 0x0300_0000, byte),
|
2022-10-21 08:11:54 +00:00
|
|
|
0x0400_0000...0x0400_03FE => self.io.write8(addr, byte),
|
2022-10-21 08:11:50 +00:00
|
|
|
|
|
|
|
// External Memory (Game Pak)
|
|
|
|
0x0E00_0000...0x0E00_FFFF => std.debug.panic("[Bus:8] write 0x{X:} to 0x{X:} in Game Pak SRAM", .{ byte, addr }),
|
2022-10-21 08:12:18 +00:00
|
|
|
else => log.warn("8-bit write of 0x{X:0>2} to 0x{X:0>8}", .{ byte, addr }),
|
2022-10-21 08:11:50 +00:00
|
|
|
}
|
|
|
|
}
|