initial commit

This commit is contained in:
2025-10-01 16:45:04 -07:00
commit 17ca11f239
21 changed files with 610 additions and 0 deletions

10
src/main.rs Normal file
View File

@@ -0,0 +1,10 @@
#![feature(uefi_std)]
pub mod chainload;
pub mod setup;
const CHAINLOADER_TARGET: &str = "\\EFI\\BOOT\\KERNEL.efi";
fn main() {
setup::init();
chainload::chainload(CHAINLOADER_TARGET);
}