mirror of
https://github.com/mii443/rsrv.git
synced 2025-08-23 00:45:28 +00:00
rv wrapper
This commit is contained in:
13
examples/simple.rs
Normal file
13
examples/simple.rs
Normal file
@ -0,0 +1,13 @@
|
||||
use rsrv::rv::*;
|
||||
|
||||
fn main() {
|
||||
let cpu = RV::new(0x10000, vec![0x02A88893, 0x00000073]);
|
||||
|
||||
while RV::step(cpu) != RV_EECALL {}
|
||||
|
||||
println!(
|
||||
"Environment call @ {:08x}: {}",
|
||||
RV::get_pc(cpu),
|
||||
RV::get_r(cpu)[17]
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user