feat(OS): Create basic kernel that can be run through both QEMU and on hardware #1

Merged
noah.knegt merged 3 commits from setup-os-structure into main 2025-07-20 21:15:06 +02:00
3 changed files with 13 additions and 1 deletions
Showing only changes of commit 9401ebccfc - Show all commits

5
.gitignore vendored
View File

@@ -16,3 +16,8 @@ target/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Added by cargo
/target

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "FerrOS"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@@ -1,3 +1,4 @@
# FerrOS
A custom OS written in Rust