chore: disable logging by default

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-01-25 18:20:30 -04:00
parent e5c8f0ce07
commit b1cc985230
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 thumb_lut: [0x400]ThumbInstrFn = thumbPopulate();
const logging_enabled: bool = true;
const logging_enabled: bool = false;
pub const Arm7tdmi = struct {
const Self = @This();