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