cpu.rs, tests.rs: fix clippy lints (thanks clippy)
This commit is contained in:
parent
8de4f42ff6
commit
7ab0a596c9
16
src/cpu.rs
16
src/cpu.rs
@ -539,6 +539,7 @@ impl CPU {
|
||||
/// ```
|
||||
pub fn dump(&self) {
|
||||
//let dumpstyle = owo_colors::Style::new().bright_black();
|
||||
use std::fmt::Write;
|
||||
std::println!(
|
||||
"PC: {:04x}, SP: {:04x}, I: {:04x}\n{}DLY: {}, SND: {}, CYC: {:6}",
|
||||
self.pc,
|
||||
@ -547,16 +548,17 @@ impl CPU {
|
||||
self.v
|
||||
.into_iter()
|
||||
.enumerate()
|
||||
.map(|(i, gpr)| {
|
||||
format!(
|
||||
"v{i:X}: {gpr:02x} {}",
|
||||
.fold(String::new(), |mut s, (i, gpr)| {
|
||||
let _ = write!(
|
||||
s,
|
||||
"{}v{i:X}: {gpr:02x}",
|
||||
match i % 4 {
|
||||
3 => "\n",
|
||||
0 => "\n",
|
||||
_ => "",
|
||||
}
|
||||
)
|
||||
})
|
||||
.collect::<String>(),
|
||||
);
|
||||
s
|
||||
}),
|
||||
self.delay,
|
||||
self.sound,
|
||||
self.cycle,
|
||||
|
@ -956,7 +956,7 @@ mod io {
|
||||
}
|
||||
|
||||
mod bcdtest {
|
||||
pub(self) use super::*;
|
||||
use super::*;
|
||||
|
||||
struct BCDTest {
|
||||
// value to test
|
||||
|
Loading…
Reference in New Issue
Block a user