load kernel

This commit is contained in:
mii443
2025-07-01 20:04:03 +09:00
parent 830b95bad4
commit 8509a1bed6
2 changed files with 60 additions and 6 deletions

View File

@@ -15,5 +15,13 @@
"features": "-mmx,-sse,+soft-float",
"rustc-abi": "x86-softfloat",
"code-model": "kernel",
"max-atomic-width": 64
"max-atomic-width": 64,
"position-independent-executables": false,
"post-link-args": {
"ld.lld": [
"--entry=asm_main",
"--image-base=0x100000",
"--static"
]
}
}