chore: move Gpio and Clock structs to separate file

This commit is contained in:
2022-09-18 00:37:45 -03:00
parent d3efa432fa
commit fa3b9c21b9
3 changed files with 467 additions and 463 deletions

View File

@@ -2,7 +2,7 @@ const std = @import("std");
const Bus = @import("Bus.zig");
const Arm7tdmi = @import("cpu.zig").Arm7tdmi;
const Clock = @import("bus/GamePak.zig").Clock;
const Clock = @import("bus/gpio.zig").Clock;
const Order = std.math.Order;
const PriorityQueue = std.PriorityQueue;