Add base pointer to frame class. Has no real use outside of webijvm

This commit is contained in:
2019-04-18 00:38:17 +02:00
parent 932abd0cb2
commit 73a03ddbb0
3 changed files with 11 additions and 9 deletions

View File

@@ -41,7 +41,7 @@ impl Machine {
halted: false,
pool,
block,
frame: vec![Frame::new(ANTI_BS_SIZE)],
frame: vec![Frame::new(ANTI_BS_SIZE, 0)],
stream_in: Box::new(::std::io::stdin()),
stream_out: Arc::new(Mutex::new(::std::io::stdout())),