Skip to content

Instantly share code, notes, and snippets.

@cho0h5
Created January 13, 2022 13:37
Show Gist options
  • Save cho0h5/473f7f5b2a5e4b9c6cdf33724f433229 to your computer and use it in GitHub Desktop.
Save cho0h5/473f7f5b2a5e4b9c6cdf33724f433229 to your computer and use it in GitHub Desktop.
#![feature(asm)]
fn main() {
use std::arch::asm;
let buf = "hello, world!\n";
unsafe {
asm!("svc #0",
in("x0") 1,
in("x1") buf.as_ptr(),
in("x2") buf.len(),
in("x8") 64,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment