mirror of
https://github.com/TheOfficialFloW/bd-jb
synced 2024-11-15 13:35:06 -05:00
15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
|
|
OUTPUT_ARCH(i386:x86-64)
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x916300000;
|
|
.text : { *(.text .text.*) }
|
|
. = 0x916304000;
|
|
.rodata : { *(.rodata .rodata.*) }
|
|
.data : { *(.data .data.*) }
|
|
.bss : { *(.bss .bss.*) }
|
|
}
|