You've already forked ps5-linux-loader
mirror of
https://github.com/ps5-linux/ps5-linux-loader.git
synced 2026-04-29 16:42:31 -07:00
18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
|
|
/* linker.ld */
|
||
|
|
ENTRY(main)
|
||
|
|
|
||
|
|
SECTIONS
|
||
|
|
{
|
||
|
|
. = 0x1000; /* 0x1000 to avoid warnings from linker */
|
||
|
|
/* Place our custom header first */
|
||
|
|
.shell_code :
|
||
|
|
{
|
||
|
|
*(.entry_point)
|
||
|
|
*(.text)
|
||
|
|
*(.text.*)
|
||
|
|
*(.data*)
|
||
|
|
*(.rodata*)
|
||
|
|
*(.bss)
|
||
|
|
*(.bss.*)
|
||
|
|
}
|
||
|
|
}
|