mirror of
https://github.com/handsomezhuzhu/2025-yatcpu.git
synced 2026-02-20 12:00:14 +00:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x00001000;
|
|
.text : { *(.text.init) *(.text.startup) *(.text) }
|
|
.data ALIGN(0x1000) : { *(.data*) *(.rodata*) *(.sdata*) }
|
|
.bss : { *(.bss) }
|
|
_end = .;
|
|
}
|