Added support for USA Rev 1
This commit is contained in:
parent
b968009093
commit
636af928ae
18 changed files with 12142 additions and 19 deletions
10
configure.py
10
configure.py
|
|
@ -30,6 +30,7 @@ from tools.project import (
|
|||
DEFAULT_VERSION = 0
|
||||
VERSIONS = [
|
||||
"GMPE01_00", # USA 1.0
|
||||
"GMPE01_01", # USA 1.1
|
||||
]
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
|
|
@ -245,6 +246,9 @@ cflags_odemuexi = [
|
|||
# TODO figure out flags
|
||||
]
|
||||
|
||||
if version_num > 0:
|
||||
cflags_odemuexi.append("-inline auto,deferred")
|
||||
|
||||
cflags_amcstub = [
|
||||
*cflags_base,
|
||||
"-inline auto,deferred",
|
||||
|
|
@ -760,11 +764,11 @@ config.libs = [
|
|||
),
|
||||
{
|
||||
"lib": "OdemuExi2",
|
||||
"mw_version": "GC/1.2.5",
|
||||
"mw_version": "GC/1.2.5" if version_num == 0 else "GC/1.2.5n",
|
||||
"cflags": cflags_odemuexi,
|
||||
"host": False,
|
||||
"objects": [
|
||||
Object(NonMatching, "OdemuExi2/DebuggerDriver.c"),
|
||||
Object(MatchingFor("GMPE01_01"), "OdemuExi2/DebuggerDriver.c"),
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
@ -844,7 +848,7 @@ config.libs = [
|
|||
"instDll",
|
||||
objects={
|
||||
Object(Matching, "REL/instDll/main.c"),
|
||||
Object(NonMatching, "REL/instDll/font.c"),
|
||||
Object(Matching, "REL/instDll/font.c"),
|
||||
},
|
||||
),
|
||||
Rel(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue