File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ impl<T: Sys> Cpu<T> {
205
205
None => return ,
206
206
} ;
207
207
208
- info ! ( "Interrupted: {:02x}" , value) ;
208
+ debug ! ( "Interrupted: {:02x}" , value) ;
209
209
210
210
self . interrupted ( value) ;
211
211
}
@@ -488,7 +488,7 @@ impl<T: Sys> Cpu<T> {
488
488
/// Add 1 to pc unless HALT bug is triggerred
489
489
fn inc_pc ( & mut self ) {
490
490
if self . halt_bug {
491
- info ! ( "Halt bug" ) ;
491
+ debug ! ( "Halt bug" ) ;
492
492
self . halt_bug = false ;
493
493
} else {
494
494
self . set_pc ( self . get_pc ( ) . wrapping_add ( 1 ) ) ;
Original file line number Diff line number Diff line change @@ -100,10 +100,10 @@ impl Mbc1 {
100
100
fn on_write ( & mut self , addr : u16 , value : u8 ) {
101
101
if addr <= 0x1fff {
102
102
if value & 0xf == 0x0a {
103
- info ! ( "External RAM enabled" ) ;
103
+ debug ! ( "External RAM enabled" ) ;
104
104
self . ram_enable = true ;
105
105
} else {
106
- info ! ( "External RAM disabled" ) ;
106
+ debug ! ( "External RAM disabled" ) ;
107
107
self . ram_enable = false ;
108
108
self . hw . get ( ) . borrow_mut ( ) . save_ram ( & self . ram ) ;
109
109
}
You can’t perform that action at this time.
0 commit comments