Initial code

This commit is contained in:
Greg Shuflin
2025-01-10 11:53:02 -08:00
parent 7e4cedcdc0
commit e8c4847b12
3 changed files with 27 additions and 0 deletions

7
thousand-line-os/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "thousand-line-os"
version = "0.1.0"

View File

@@ -0,0 +1,6 @@
[package]
name = "thousand-line-os"
version = "0.1.0"
edition = "2021"
[dependencies]

View File

@@ -0,0 +1,14 @@
#![no_std]
#![no_main]
#[no_mangle]
pub extern "C" fn _start() -> ! {
init()
}
fn init() -> ! {
loop {
}
}