1 #![no_main] 2 3 use uefi::prelude::*; 4 5 #[entry] main(_x: usize) -> Status6 fn main(_x: usize) -> Status { 7 Status::SUCCESS 8 } 9