initial dev setup

This commit is contained in:
CDaut 2025-09-30 21:06:09 +02:00
commit 3953ef2bfb
Signed by: clara
GPG key ID: 223391B52FAD4463
8 changed files with 321 additions and 0 deletions

13
raytracer/src/main.rs Normal file
View 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
}