chore(cpu): lay groundwork for THUMB instruction decoding and execution

This commit is contained in:
2022-01-14 05:23:16 -04:00
parent ae37b1218b
commit 0cf052838d
7 changed files with 55 additions and 17 deletions

View File

@@ -2,7 +2,7 @@ const std = @import("std");
const Bus = @import("../../Bus.zig");
const Arm7tdmi = @import("../../cpu.zig").Arm7tdmi;
const InstrFn = @import("../../cpu.zig").InstrFn;
const InstrFn = @import("../../cpu.zig").ArmInstrFn;
pub fn blockDataTransfer(comptime P: bool, comptime U: bool, comptime S: bool, comptime W: bool, comptime L: bool) InstrFn {
return struct {