sound: Comment out spamming printlns for now

TODO - replace when decent logging module is in place


Former-commit-id: bfcfe07a0506aa9b4f2fa4e33863afdb74f6783c
This commit is contained in:
Michel Heily 2020-01-01 00:00:08 +02:00
parent 05f1085410
commit 0872ff650a

View file

@ -179,20 +179,20 @@ impl SoundController {
REG_SOUNDBIAS => self.sound_bias,
_ => {
println!(
"Unimplemented read from {:x} {}",
io_addr,
io_reg_string(io_addr)
);
// println!(
// "Unimplemented read from {:x} {}",
// io_addr,
// io_reg_string(io_addr)
// );
0
}
};
println!(
"Read {} ({:08x}) = {:04x}",
io_reg_string(io_addr),
io_addr,
value
);
// println!(
// "Read {} ({:08x}) = {:04x}",
// io_reg_string(io_addr),
// io_addr,
// value
// );
value
}
@ -289,11 +289,11 @@ impl SoundController {
},
_ => {
println!(
"Unimplemented write to {:x} {}",
io_addr,
io_reg_string(io_addr)
);
// println!(
// "Unimplemented write to {:x} {}",
// io_addr,
// io_reg_string(io_addr)
// );
}
}
}