mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
16 lines
185 B
Text
16 lines
185 B
Text
_stack_size = 0x80000;
|
|
_heap_size = 1024*1024*10;
|
|
|
|
ENTRY(_start);
|
|
SECTIONS {
|
|
.text 0xbfc008f0 : {
|
|
*(.text)
|
|
*(.data)
|
|
*(.rdata)
|
|
*(.sdata)
|
|
*(.rodata)
|
|
*(.bss)
|
|
*(.sbss)
|
|
}
|
|
}
|
|
|