feat: move arm instr decoding to module

This commit is contained in:
2022-10-21 05:12:54 -03:00
parent f0284107f9
commit aa19ef5f71
10 changed files with 106 additions and 104 deletions

View File

@@ -1,6 +1,6 @@
const Bus = @import("../../Bus.zig");
const Arm7tdmi = @import("../../cpu.zig").Arm7tdmi;
const InstrFn = @import("../../cpu.zig").ArmInstrFn;
const InstrFn = @import("../../cpu.zig").arm.InstrFn;
pub fn multiply(comptime A: bool, comptime S: bool) InstrFn {
return struct {