Remove field value from MemCell

- plans for a directly interpreted mblf mode have been scrapped
-  it's MBLF, not MBNF
master
Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 206b993b7b
commit b0d6627cbd
  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