initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-12-10 23:54:47 +01:00
commit 128c2d6e13
Se han modificado 95 ficheros con 26156 adiciones y 0 borrados

14
.cargo/config.toml Archivo normal
Ver fichero

@@ -0,0 +1,14 @@
[build]
target = "x86_64-unknown-none"
[target.x86_64-unknown-none]
runner = "qemu-system-x86_64 -kernel"
rustflags = [
"-C", "relocation-model=static",
"-C", "link-arg=-Tkernel/linker.ld",
"-C", "link-arg=-no-pie"
]
[unstable]
build-std = ["core", "alloc"]
build-std-features = ["compiler-builtins-mem"]