mirror of
https://github.com/PiMaker/rvc.git
synced 2024-11-10 06:00:07 +00:00
134e85e485
honestly forgot what I added all over the last year or so, but here you go, enjoy more cursed code
35 lines
439 B
Plaintext
35 lines
439 B
Plaintext
MEMORY
|
|
{
|
|
RAM : ORIGIN = 0x80000000, LENGTH = 60M
|
|
}
|
|
|
|
_estack = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.entry)
|
|
*(.text)
|
|
*(.text*)
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
} >RAM
|
|
|
|
.data :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.data)
|
|
*(.data*)
|
|
} >RAM
|
|
|
|
.bss :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.bss)
|
|
*(.bss*)
|
|
*(COMMON)
|
|
} >RAM
|
|
}
|