mirror of
https://github.com/rust-osdev/uefi-rs
synced 2026-06-08 17:17:36 +00:00
12 lines
137 B
Rust
12 lines
137 B
Rust
#![no_main]
|
|
#![no_std]
|
|
|
|
use uefi::prelude::*;
|
|
|
|
#[entry]
|
|
fn main() -> Status {
|
|
uefi::helpers::init().unwrap();
|
|
|
|
Status::SUCCESS
|
|
}
|