Skip to content
Snippets Groups Projects
Verified Commit 6e68faa2 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: better fixes

parent 2034e969
No related branches found
No related tags found
No related merge requests found
use std::fmt::Display;
use getrandom::getrandom;
#[cfg(feature = "web")]
......@@ -299,5 +301,7 @@ impl Default for Chip8 {
}
impl Display for Chip8 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "pc: {}", self.pc)
}
}
mod chip8;
pub mod chip8;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment