forked from AbleOS/holey-bytes
changes I GUESS
This commit is contained in:
parent
05e868999d
commit
86232e35a6
3
hbasm/assets/memory.hbasm
Normal file
3
hbasm/assets/memory.hbasm
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
li r20, 1010
|
||||||
|
st r20, r24, 0, 1
|
||||||
|
addi r24, r0, 10
|
BIN
hbvm/assets/memory.hb
Normal file
BIN
hbvm/assets/memory.hb
Normal file
Binary file not shown.
|
@ -36,7 +36,12 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
|
||||||
println!("Program interrupt: {:?}", vm.run());
|
println!("Program interrupt: {:?}", vm.run());
|
||||||
println!("{:?}", vm.registers);
|
println!("{:?}", vm.registers);
|
||||||
std::alloc::dealloc(data, std::alloc::Layout::from_size_align_unchecked(4096, 4096));
|
|
||||||
|
println!("{:?}", core::slice::from_raw_parts(data, 4096));
|
||||||
|
std::alloc::dealloc(
|
||||||
|
data,
|
||||||
|
std::alloc::Layout::from_size_align_unchecked(4096, 4096),
|
||||||
|
);
|
||||||
vm.memory.unmap(0).unwrap();
|
vm.memory.unmap(0).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue