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