mirror of
https://github.com/PiMaker/rvc.git
synced 2024-11-24 21:20:09 +00:00
93a50d7807
plus some minor fixes IIRC
31 lines
423 B
Plaintext
31 lines
423 B
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
|
|
ENTRY( _start )
|
|
|
|
MEMORY
|
|
{
|
|
ram (rwx) : ORIGIN = 0x80000000, LENGTH = 0x80000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.kernel : {
|
|
*(.start_here)
|
|
*(.text .text.*)
|
|
*(.rodata .rodata.*)
|
|
*(.data .data.*)
|
|
} > ram
|
|
|
|
.stack (NOLOAD) : {
|
|
. = . + 0x20000;
|
|
PROVIDE(_end_stack = .);
|
|
} > ram
|
|
|
|
.heap (NOLOAD) : {
|
|
PROVIDE(_begin_heap = .);
|
|
. = . + 0x40000;
|
|
PROVIDE(_end_heap = .);
|
|
} > ram
|
|
|
|
}
|