pull/2/head
ondra05 2023-05-28 23:37:43 +02:00
parent 908ee5b922
commit f99f729be6
No known key found for this signature in database
GPG Key ID: 0DA6D2BB2285E881
1 changed files with 3 additions and 4 deletions

View File

@ -24,7 +24,7 @@ impl IndexMut<u8> for Registers {
impl Default for Registers {
fn default() -> Self {
Self([Value { u: 0 }; 60])
Self([Value { i: 0 }; 60])
}
}
@ -55,13 +55,12 @@ macro_rules! value_def {
}
value_def! {
u: u64, unsigned;
s: i64, signed;
i: u64, int;
f: f64, float;
}
impl Debug for Value {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.unsigned().fmt(f)
self.int().fmt(f)
}
}