pub fn my_syscall() -> bool { let mut ret = 0u8; unsafe { core::arch::asm!(" svc #123 ", write=in("r12") &mut ret, clobber_abi("C")); } ret != 0 }