chore: comment-out logging by default

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-10-21 05:11:48 -03:00
parent 4b43dcd256
commit 44424e0687
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ pub const Arm7tdmi = struct {
pub inline fn step(self: *@This()) u64 { pub inline fn step(self: *@This()) u64 {
const opcode = self.fetch(); const opcode = self.fetch();
self.mgbaLog(opcode); // self.mgbaLog(opcode);
if (checkCond(&self.cpsr, opcode)) arm_lut[armIdx(opcode)](self, self.bus, opcode); if (checkCond(&self.cpsr, opcode)) arm_lut[armIdx(opcode)](self, self.bus, opcode);
return 1; return 1;