forked from Github_Repos/cvw
23 lines
361 B
Plaintext
23 lines
361 B
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
.text.trap : { *(.text.trap) }
|
|
|
|
. = 0x80000000;
|
|
.text.init : { *(.text.init) }
|
|
|
|
. = ALIGN(0x1000);
|
|
.tohost : { *(.tohost) }
|
|
. = ALIGN(0x1000);
|
|
.text : { *(.text) }
|
|
. = ALIGN(0x1000);
|
|
.data : { *(.data) }
|
|
.data.string : { *(.data.string)}
|
|
.bss : { *(.bss) }
|
|
_end = .;
|
|
}
|
|
|