mirror of
https://github.com/ps5-linux/ps5-linux-loader.git
synced 2026-05-09 16:32:00 +00:00
18 lines
291 B
Plaintext
18 lines
291 B
Plaintext
/* linker.ld */
|
|
ENTRY(main)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x1000; /* 0x1000 to avoid warnings from linker */
|
|
.text :
|
|
{
|
|
*(.entry_point)
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
*(.rodata*)
|
|
*(.bss)
|
|
*(.bss.*)
|
|
}
|
|
} |