bee7416b08
* prints hello world * Builds with the zig build system
23 lines
No EOL
216 B
Text
23 lines
No EOL
216 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 1M;
|
|
|
|
.text : ALIGN(4K) {
|
|
KEEP(*(.multiboot))
|
|
*(.text)
|
|
}
|
|
|
|
.rodata : ALIGN(4K) {
|
|
*(.rodata)
|
|
}
|
|
|
|
.data : ALIGN(4K) {
|
|
*(.data)
|
|
}
|
|
|
|
.bss : ALIGN(4K) {
|
|
*(COMMON)
|
|
*(.bss)
|
|
}
|
|
} |