Make it so the ROM can have different names

This commit is contained in:
Lorenzo Carletti 2021-11-05 19:54:03 +01:00
parent bd023ca937
commit a3ec61350d
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ namespace ScriptTool
using (IncludeFile = File.CreateText(Path.Combine(options.WorkingDirectory, "m12-includes.asm")))
{
IncludeFile.WriteLine(".gba");
IncludeFile.WriteLine(".open \"../bin/m12.gba\",0x8000000");
IncludeFile.WriteLine(".include \"m2-file.asm\"");
IncludeFile.WriteLine(".open m12_rom,0x8000000");
// Compile main string tables
if (options.DoMainText)