chore: code cleanup

This commit is contained in:
2022-01-07 20:00:42 -04:00
parent 910745f442
commit 568c374131
12 changed files with 25 additions and 33 deletions

View File

@@ -1,10 +1,9 @@
const std = @import("std");
const arm = @import("../cpu.zig");
const util = @import("../util.zig");
const Bus = @import("../Bus.zig");
const Arm7tdmi = arm.Arm7tdmi;
const InstrFn = arm.InstrFn;
const Arm7tdmi = @import("../cpu.zig").Arm7tdmi;
const InstrFn = @import("../cpu.zig").InstrFn;
pub fn halfAndSignedDataTransfer(comptime P: bool, comptime U: bool, comptime I: bool, comptime W: bool, comptime L: bool) InstrFn {
return struct {