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