make uses more consistent

This commit is contained in:
Alex Janka 2023-02-12 08:59:40 +11:00
parent ab3cba1ec0
commit d3ee58131e
2 changed files with 2 additions and 6 deletions

View file

@ -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;

View file

@ -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;