Compare commits

..

No commits in common. "3046e6243a050a6080b23cba537fd9f34c41c2bd" and "7f555095f2c49cbb06bca9fc2fd6cdee05a1b2cd" have entirely different histories.

2 changed files with 14 additions and 3 deletions

View File

@ -27,6 +27,8 @@ tim: Timers,
iwram: Iwram,
ewram: Ewram,
sched: *Scheduler,
io: Io,
pub fn init(alloc: Allocator, sched: *Scheduler, rom_path: []const u8, bios_path: ?[]const u8, save_path: ?[]const u8) !Self {
@ -40,6 +42,7 @@ pub fn init(alloc: Allocator, sched: *Scheduler, rom_path: []const u8, bios_path
.dma = DmaControllers.init(),
.tim = Timers.init(sched),
.io = Io.init(),
.sched = sched,
};
}
@ -52,6 +55,8 @@ pub fn deinit(self: Self) void {
}
pub fn read32(self: *const Self, addr: u32) u32 {
self.sched.tick += 1;
return switch (addr) {
// General Internal Memory
0x0000_0000...0x0000_3FFF => self.bios.get32(addr),
@ -74,7 +79,7 @@ pub fn read32(self: *const Self, addr: u32) u32 {
}
pub fn write32(self: *Self, addr: u32, word: u32) void {
// TODO: write32 can write to GamePak Flash
self.sched.tick += 1;
switch (addr) {
// General Internal Memory
@ -92,6 +97,8 @@ pub fn write32(self: *Self, addr: u32, word: u32) void {
}
pub fn read16(self: *const Self, addr: u32) u16 {
self.sched.tick += 1;
return switch (addr) {
// General Internal Memory
0x0000_0000...0x0000_3FFF => self.bios.get16(addr),
@ -114,7 +121,8 @@ pub fn read16(self: *const Self, addr: u32) u16 {
}
pub fn write16(self: *Self, addr: u32, halfword: u16) void {
// TODO: write16 can write to GamePak Flash
self.sched.tick += 1;
switch (addr) {
// General Internal Memory
0x0200_0000...0x02FF_FFFF => self.ewram.set16(addr & 0x3FFFF, halfword),
@ -132,6 +140,8 @@ pub fn write16(self: *Self, addr: u32, halfword: u16) void {
}
pub fn read8(self: *const Self, addr: u32) u8 {
self.sched.tick += 1;
return switch (addr) {
// General Internal Memory
0x0000_0000...0x0000_3FFF => self.bios.get8(addr),
@ -155,6 +165,8 @@ pub fn read8(self: *const Self, addr: u32) u8 {
}
pub fn write8(self: *Self, addr: u32, byte: u8) void {
self.sched.tick += 1;
switch (addr) {
// General Internal Memory
0x0200_0000...0x02FF_FFFF => self.ewram.set8(addr & 0x3FFFF, byte),

View File

@ -46,7 +46,6 @@ pub fn runFrame(sched: *Scheduler, cpu: *Arm7tdmi, bus: *Bus) void {
const frame_end = sched.tick + cycles_per_frame;
while (sched.tick < frame_end) {
sched.tick += 1;
_ = cpu.step();
while (sched.tick >= sched.nextTimestamp()) {