mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2025-02-18 05:46:22 +01:00
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
![]() |
/*
|
||
|
TinyLoad - a simple region free (original) game launcher in 4k
|
||
|
|
||
|
# This code is licensed to you under the terms of the GNU GPL, version 2;
|
||
|
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
||
|
*/
|
||
|
|
||
|
OUTPUT_FORMAT("elf32-powerpc")
|
||
|
OUTPUT_ARCH(powerpc:common)
|
||
|
|
||
|
ENTRY(_main)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 0x93000000;
|
||
|
}
|