mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@398 96395faa-99c1-11dd-bbfe-3dabce05a288
16 lines
201 B
Text
16 lines
201 B
Text
_stack_size = 0x80000;
|
|
_heap_size = 1024*1024*10;
|
|
|
|
ENTRY(_start);
|
|
SECTIONS {
|
|
.text 0xbfc008f0 : {
|
|
*(.text)
|
|
*(.data)
|
|
*(.rdata)
|
|
*(.sdata)
|
|
*(.rodata)
|
|
*(.bss)
|
|
*(.sbss)
|
|
}
|
|
}
|
|
|