implement elf loader

This commit is contained in:
Alex Zenla
2024-01-09 22:39:32 -08:00
parent 35f3346858
commit 19b797f1a2
11 changed files with 383 additions and 25 deletions

View File

@ -0,0 +1,8 @@
use xencall::{XenCall, XenCallError};
fn main() -> Result<(), XenCallError> {
let mut call = XenCall::open()?;
let info = call.get_version_capabilities()?;
println!("{:?}", info);
Ok(())
}