chore: remove print statements
This commit is contained in:
parent
3aa680ab8c
commit
1fefd4de5c
|
@ -43,9 +43,7 @@ pub const Arm7tdmi = struct {
|
|||
}
|
||||
|
||||
pub inline fn step(self: *@This()) u64 {
|
||||
std.debug.print("PC: 0x{X:} ", .{self.r[15]});
|
||||
const opcode = self.fetch();
|
||||
std.debug.print("opcode: 0x{X:}\n", .{opcode}); // Debug
|
||||
|
||||
if (checkCond(&self.cpsr, opcode)) arm_lut[armIdx(opcode)](self, self.bus, opcode);
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue