├── .gitignore ├── Dump.bat ├── LICENSE-GPL3.txt ├── README.md ├── Settings.json ├── Write.bat ├── asm ├── CHR - New.tbl ├── bios font.tbl ├── gfx.asm ├── main.asm └── text.asm ├── graphics ├── uncompressed (new) │ ├── FONT.bin │ ├── OPENGRP.bin │ └── OPMSG.bin └── uncompressed (original) │ └── .gitignore ├── roms └── .gitignore ├── saydos └── .gitignore ├── script └── Script.json ├── tables ├── BIOS - Length.tbl ├── BIOS.tbl ├── CHR - Length.tbl ├── CHR - New.tbl ├── CHR - Original.tbl ├── Dictionary - New.tbl ├── Dictionary - Original.tbl ├── FindAndReplace (BIOS) - New.tbl ├── FindAndReplace (BIOS) - Original.tbl ├── FindAndReplace (Battle) - New.tbl ├── FindAndReplace (Battle) - Original.tbl ├── FindAndReplace (Menu) - New.tbl └── FindAndReplace (Menu) - Original.tbl └── tools ├── armips └── armips.exe ├── compression ├── FF MSX GFX.deps.json ├── FF MSX GFX.dll ├── FF MSX GFX.exe ├── FF MSX GFX.runtimeconfig.json └── Libraries.dll ├── cyproAce ├── Cypro Ace.exe ├── EPPlus.dll └── Newtonsoft.Json.dll ├── saydos ├── Newtonsoft.Json.dll ├── SayDos.deps.json ├── SayDos.dll ├── SayDos.exe └── SayDos.runtimeconfig.json └── spiro ├── AddressConversion.dll ├── Newtonsoft.Json.dll ├── Spiro.deps.json ├── Spiro.dll ├── Spiro.exe └── Spiro.runtimeconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/.gitignore -------------------------------------------------------------------------------- /Dump.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/Dump.bat -------------------------------------------------------------------------------- /LICENSE-GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/LICENSE-GPL3.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/README.md -------------------------------------------------------------------------------- /Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/Settings.json -------------------------------------------------------------------------------- /Write.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/Write.bat -------------------------------------------------------------------------------- /asm/CHR - New.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/asm/CHR - New.tbl -------------------------------------------------------------------------------- /asm/bios font.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/asm/bios font.tbl -------------------------------------------------------------------------------- /asm/gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/asm/gfx.asm -------------------------------------------------------------------------------- /asm/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/asm/main.asm -------------------------------------------------------------------------------- /asm/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/asm/text.asm -------------------------------------------------------------------------------- /graphics/uncompressed (new)/FONT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/graphics/uncompressed (new)/FONT.bin -------------------------------------------------------------------------------- /graphics/uncompressed (new)/OPENGRP.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/graphics/uncompressed (new)/OPENGRP.bin -------------------------------------------------------------------------------- /graphics/uncompressed (new)/OPMSG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/graphics/uncompressed (new)/OPMSG.bin -------------------------------------------------------------------------------- /graphics/uncompressed (original)/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/graphics/uncompressed (original)/.gitignore -------------------------------------------------------------------------------- /roms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/roms/.gitignore -------------------------------------------------------------------------------- /saydos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/saydos/.gitignore -------------------------------------------------------------------------------- /script/Script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/script/Script.json -------------------------------------------------------------------------------- /tables/BIOS - Length.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tables/BIOS.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/BIOS.tbl -------------------------------------------------------------------------------- /tables/CHR - Length.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tables/CHR - New.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/CHR - New.tbl -------------------------------------------------------------------------------- /tables/CHR - Original.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/CHR - Original.tbl -------------------------------------------------------------------------------- /tables/Dictionary - New.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/Dictionary - New.tbl -------------------------------------------------------------------------------- /tables/Dictionary - Original.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/Dictionary - Original.tbl -------------------------------------------------------------------------------- /tables/FindAndReplace (BIOS) - New.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tables/FindAndReplace (BIOS) - Original.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/FindAndReplace (BIOS) - Original.tbl -------------------------------------------------------------------------------- /tables/FindAndReplace (Battle) - New.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/FindAndReplace (Battle) - New.tbl -------------------------------------------------------------------------------- /tables/FindAndReplace (Battle) - Original.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tables/FindAndReplace (Menu) - New.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tables/FindAndReplace (Menu) - New.tbl -------------------------------------------------------------------------------- /tables/FindAndReplace (Menu) - Original.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/armips/armips.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/armips/armips.exe -------------------------------------------------------------------------------- /tools/compression/FF MSX GFX.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/compression/FF MSX GFX.deps.json -------------------------------------------------------------------------------- /tools/compression/FF MSX GFX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/compression/FF MSX GFX.dll -------------------------------------------------------------------------------- /tools/compression/FF MSX GFX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/compression/FF MSX GFX.exe -------------------------------------------------------------------------------- /tools/compression/FF MSX GFX.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/compression/FF MSX GFX.runtimeconfig.json -------------------------------------------------------------------------------- /tools/compression/Libraries.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/compression/Libraries.dll -------------------------------------------------------------------------------- /tools/cyproAce/Cypro Ace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/cyproAce/Cypro Ace.exe -------------------------------------------------------------------------------- /tools/cyproAce/EPPlus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/cyproAce/EPPlus.dll -------------------------------------------------------------------------------- /tools/cyproAce/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/cyproAce/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /tools/saydos/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/saydos/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /tools/saydos/SayDos.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/saydos/SayDos.deps.json -------------------------------------------------------------------------------- /tools/saydos/SayDos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/saydos/SayDos.dll -------------------------------------------------------------------------------- /tools/saydos/SayDos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/saydos/SayDos.exe -------------------------------------------------------------------------------- /tools/saydos/SayDos.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/saydos/SayDos.runtimeconfig.json -------------------------------------------------------------------------------- /tools/spiro/AddressConversion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/AddressConversion.dll -------------------------------------------------------------------------------- /tools/spiro/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /tools/spiro/Spiro.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/Spiro.deps.json -------------------------------------------------------------------------------- /tools/spiro/Spiro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/Spiro.dll -------------------------------------------------------------------------------- /tools/spiro/Spiro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/Spiro.exe -------------------------------------------------------------------------------- /tools/spiro/Spiro.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romh-acking/final-fantasy-msx2-en/HEAD/tools/spiro/Spiro.runtimeconfig.json --------------------------------------------------------------------------------