mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
15 lines
173 B
Text
Executable file
15 lines
173 B
Text
Executable file
OUTPUT_FORMAT("binary")
|
|
ENTRY(main)
|
|
SECTIONS
|
|
{
|
|
.text 0x7c00 : {
|
|
*(.text)
|
|
}
|
|
.data 0x7c00 : {
|
|
*(.data)
|
|
}
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|