mirror of
https://github.com/olofk/serv.git
synced 2026-01-13 07:09:33 +00:00
11 lines
136 B
Plaintext
11 lines
136 B
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|