chore(bus): refactor bus.zig

This commit is contained in:
2022-01-07 19:49:58 -04:00
parent f8c6af3247
commit 910745f442
10 changed files with 161 additions and 163 deletions

View File

@@ -2,7 +2,7 @@ const std = @import("std");
const emu = @import("emu.zig");
const Scheduler = @import("scheduler.zig").Scheduler;
const Bus = @import("bus.zig").Bus;
const Bus = @import("Bus.zig");
const Arm7tdmi = @import("cpu.zig").Arm7tdmi;
pub fn main() anyerror!void {