chore(cpu): disable logging by default
This commit is contained in:
parent
6f4f872765
commit
4ab59007f9
|
@ -88,9 +88,9 @@ impl Cpu {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn step(&mut self) -> Cycle {
|
pub fn step(&mut self) -> Cycle {
|
||||||
if !self.bus.boot_enabled() {
|
// if !self.bus.boot_enabled() {
|
||||||
self.log_state().unwrap();
|
// self.log_state().unwrap();
|
||||||
}
|
// }
|
||||||
|
|
||||||
let cycles = match self.halted() {
|
let cycles = match self.halted() {
|
||||||
Some(state) => {
|
Some(state) => {
|
||||||
|
|
Loading…
Reference in New Issue