initial dev setup
This commit is contained in:
commit
3953ef2bfb
8 changed files with 321 additions and 0 deletions
13
raytracer/src/main.rs
Normal file
13
raytracer/src/main.rs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
use log::info;
|
||||
use uefi::prelude::*;
|
||||
|
||||
#[entry]
|
||||
fn main() -> Status {
|
||||
uefi::helpers::init().unwrap();
|
||||
info!("Hello world!");
|
||||
boot::stall(10_000_000);
|
||||
Status::SUCCESS
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue