chore: disable logging by default

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-10-21 05:12:03 -03:00
parent 4858dbc5dc
commit 8e7766e694
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ pub const ThumbInstrFn = fn (*Arm7tdmi, *Bus, u16) void;
const arm_lut: [0x1000]ArmInstrFn = armPopulate(); const arm_lut: [0x1000]ArmInstrFn = armPopulate();
const thumb_lut: [0x400]ThumbInstrFn = thumbPopulate(); const thumb_lut: [0x400]ThumbInstrFn = thumbPopulate();
const logging_enabled: bool = true; const logging_enabled: bool = false;
pub const Arm7tdmi = struct { pub const Arm7tdmi = struct {
const Self = @This(); const Self = @This();