Remove field value from MemCell

- plans for a directly interpreted mblf mode have been scrapped
-  it's MBLF, not MBNF
Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 4cc28a5c2f
commit 4d3b7742cc
No known key found for this signature in database
GPG Key ID: E62222846283925
  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