initial commit -- framebuffer Hello, World!

This commit is contained in:
FantasyPvP
2024-11-16 15:13:05 +00:00
commit ac4cf9a27b
16 changed files with 863 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[package]
name = "kernel"
version.workspace = true
edition.workspace = true
[dependencies]
limine = "0.3.1"
spin = "0.9.8"
bitflags = "2.4.0"
lazy_static = { version = "1.5.0", features = ["spin", "spin_no_std"] }
[[bin]]
name = "kernel"
path = "src/main.rs"
test = false
bench = false