diff --git a/build/tests/TestMaker/Makefile b/build/tests/TestMaker/Makefile index aff5cc46..ce610dad 100644 --- a/build/tests/TestMaker/Makefile +++ b/build/tests/TestMaker/Makefile @@ -160,7 +160,7 @@ BANNERCVTR = $(TWL_TOOLSDIR)/bin/bannercvtr.exe #---------------------------------------------------------------------------- -TARGET_BIN = twl_$(GAMECODE).tad +TARGET_BIN = twl_$(GAMECODE).$(TARGET_SUFFIX) ROM_SPEC = twl_$(GAMECODE).rsf #SRCDIR = # using default diff --git a/build/tests/TestMaker/romparam.yaml b/build/tests/TestMaker/romparam.yaml index 02f3eab1..1f9532f9 100644 Binary files a/build/tests/TestMaker/romparam.yaml and b/build/tests/TestMaker/romparam.yaml differ diff --git a/build/tests/TestMaker/script/config.py b/build/tests/TestMaker/script/config.py index eb1c4017..a73adfda 100644 --- a/build/tests/TestMaker/script/config.py +++ b/build/tests/TestMaker/script/config.py @@ -104,6 +104,8 @@ for num in romparam.keys(): codeparam.write('ROM_SPEC_PARAM = %s\n' % rsf_opt_str) #----- TITLE_VERSION_LO の指定 codeparam.write('TITLE_VERSION_LO = %d\n' % (romparam[num][rsfkey]['Version']%256)) + #----- TARGET_SUFFIX の指定 + codeparam.write('TARGET_SUFFIX = %s\n' % ('tad' if romparam[num][rsfkey]['Media'] == 'NAND' else 'srl')) finally: codeparam.close()