wip swift in kernel

This commit is contained in:
2026-04-20 15:51:40 +09:00
parent b33f63635b
commit 2261985e7c
5 changed files with 108 additions and 58 deletions
+14
View File
@@ -0,0 +1,14 @@
ENTRY(_start)
SECTIONS {
. = 0;
.text : {
*(.text.boot)
*(.text*)
}
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) *(COMMON) }
}