mirror of
https://github.com/olofk/serv.git
synced 2025-04-21 12:27:08 -04:00
10 lines
136 B
Text
10 lines
136 B
Text
OUTPUT_ARCH( "riscv" )
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|