Skip to content

Commit

Permalink
Merge pull request #11 from bakervm/release/0.2.2
Browse files Browse the repository at this point in the history
Made VM { mem } public
  • Loading branch information
sphinxc0re authored Mar 16, 2018
2 parents 8364a19 + 13c50b8 commit e9cc9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub struct VM {
/// The stack pointer
sp: Address,
/// The memory allocated and used by the VM
mem: Vec<SmallUInt>,
pub mem: Vec<SmallUInt>,
/// The return value of the VM
pub return_value: SmallUInt,
/// The stack of calls (return addresses)
Expand Down

0 comments on commit e9cc9b5

Please sign in to comment.