Remove field value from MemCell

- plans for a directly interpreted mblf mode have been scrapped
-  it's MBLF, not MBNF
master
Raymon Zutekouw 2 years ago
parent f2934ace5d
commit 2d81fe1406
No known key found for this signature in database
GPG Key ID: 1E9BCC39EDD1DD53
  1. 3
      src/main.rs

@ -19,12 +19,11 @@ struct MblfParser;
struct MemCell {
address: u32,
value: u8,
}
impl MemCell {
pub fn allocate(address: u32) -> Self {
Self { address, value: 0 }
Self { address }
}
}

Loading…
Cancel
Save