#![no_std] #![no_main] #[macro_use] extern crate user_lib; #[no_mangle] fn main() -> i32 { println!("Into Test store_fault, we will insert an invalid store operation..."); println!("Kernel should kill this application!"); unsafe { core::ptr::null_mut::().write_volatile(0); } 0 }