make uses more consistent
This commit is contained in:
parent
ab3cba1ec0
commit
d3ee58131e
|
@ -5,13 +5,11 @@ use self::{
|
|||
},
|
||||
};
|
||||
use crate::{
|
||||
processor::{clear_bit, get_bit, set_bit, set_or_clear_bit, CPU},
|
||||
processor::{clear_bit, get_bit, set_bit, set_or_clear_bit, SplitRegister, CPU},
|
||||
FACTOR, HEIGHT, WIDTH,
|
||||
};
|
||||
use minifb::{Window, WindowOptions};
|
||||
|
||||
use super::SplitRegister;
|
||||
|
||||
mod tile_window;
|
||||
mod types;
|
||||
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
use self::rom::ROM;
|
||||
use crate::{
|
||||
processor::{clear_bit, get_bit},
|
||||
processor::{clear_bit, get_bit, SplitRegister},
|
||||
verbose_println,
|
||||
};
|
||||
use minifb::Key;
|
||||
use std::io::{stdout, Write};
|
||||
|
||||
use super::SplitRegister;
|
||||
|
||||
pub(crate) mod rom;
|
||||
|
||||
pub(crate) type Address = u16;
|
||||
|
|
Loading…
Reference in a new issue