chore: comment-out logging by default

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-01-04 03:58:11 -06:00
parent 28bb410dfd
commit 172f3e8efe
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 {
const opcode = self.fetch();
self.mgbaLog(opcode);
// self.mgbaLog(opcode);
if (checkCond(&self.cpsr, opcode)) arm_lut[armIdx(opcode)](self, self.bus, opcode);
return 1;