├── COPYING ├── README ├── blackt ├── COPYING ├── Makefile └── src │ ├── exception │ ├── TException.cpp │ ├── TException.h │ ├── TGenericException.cpp │ └── TGenericException.h │ ├── tgui │ ├── TGuiEvent.cpp │ ├── TGuiEvent.h │ ├── TGuiGridLayer.cpp │ ├── TGuiGridLayer.h │ ├── TGuiIndexedDisplayScene.cpp │ ├── TGuiIndexedDisplayScene.h │ ├── TGuiIndexedPickerLayer.cpp │ ├── TGuiIndexedPickerLayer.h │ ├── TGuiIndexedPickerScene.cpp │ ├── TGuiIndexedPickerScene.h │ ├── TGuiScene.cpp │ ├── TGuiScene.h │ ├── TGuiSceneLayer.cpp │ ├── TGuiSceneLayer.h │ ├── TGuiTestLayer.cpp │ ├── TGuiTestLayer.h │ ├── TGuiTestPickerScene.cpp │ ├── TGuiTestPickerScene.h │ ├── TGuiTestScene.cpp │ ├── TGuiTestScene.h │ ├── TLayeredGuiScene.cpp │ └── TLayeredGuiScene.h │ └── util │ ├── ByteConversion.cpp │ ├── ByteConversion.h │ ├── ByteSizes.cpp │ ├── ByteSizes.h │ ├── EndiannessType.cpp │ ├── EndiannessType.h │ ├── MiscMath.cpp │ ├── MiscMath.h │ ├── SignednessType.cpp │ ├── SignednessType.h │ ├── TArray.cpp │ ├── TArray.h │ ├── TBitmapFont.cpp │ ├── TBitmapFont.h │ ├── TBitmapFontChar.cpp │ ├── TBitmapFontChar.h │ ├── TBufStream.cpp │ ├── TBufStream.h │ ├── TByte.cpp │ ├── TByte.h │ ├── TCdMsf.cpp │ ├── TCdMsf.h │ ├── TCharFmt.cpp │ ├── TCharFmt.h │ ├── TColor.cpp │ ├── TColor.h │ ├── TConstants.cpp │ ├── TConstants.h │ ├── TCoordPair.cpp │ ├── TCoordPair.h │ ├── TCsv.cpp │ ├── TCsv.h │ ├── TEdcCalc.cpp │ ├── TEdcCalc.h │ ├── TFileInfo.cpp │ ├── TFileInfo.h │ ├── TFileManip.cpp │ ├── TFileManip.h │ ├── TFreeSpace.cpp │ ├── TFreeSpace.h │ ├── TGaloisField256.cpp │ ├── TGaloisField256.h │ ├── TGaloisField256Cd.cpp │ ├── TGaloisField256Cd.h │ ├── TGraphic.cpp │ ├── TGraphic.h │ ├── TIfstream.cpp │ ├── TIfstream.h │ ├── TIniFile.cpp │ ├── TIniFile.h │ ├── TInputEventData.cpp │ ├── TInputEventData.h │ ├── TInsertionSortedList.cpp │ ├── TInsertionSortedList.h │ ├── TLineWrapper.cpp │ ├── TLineWrapper.h │ ├── TOfstream.cpp │ ├── TOfstream.h │ ├── TOpt.cpp │ ├── TOpt.h │ ├── TParse.cpp │ ├── TParse.h │ ├── TPngConversion.cpp │ ├── TPngConversion.h │ ├── TRasterFont.cpp │ ├── TRasterFont.h │ ├── TRect.cpp │ ├── TRect.h │ ├── TSerialize.cpp │ ├── TSerialize.h │ ├── TSjis.cpp │ ├── TSjis.h │ ├── TSort.cpp │ ├── TSort.h │ ├── TSoundFile.cpp │ ├── TSoundFile.h │ ├── TSptr.cpp │ ├── TSptr.h │ ├── TStream.cpp │ ├── TStream.h │ ├── TString.cpp │ ├── TString.h │ ├── TStringConversion.cpp │ ├── TStringConversion.h │ ├── TStringEncoding.cpp │ ├── TStringEncoding.h │ ├── TStringSearch.cpp │ ├── TStringSearch.h │ ├── TThingyTable.cpp │ ├── TThingyTable.h │ ├── TTransModel.cpp │ ├── TTransModel.h │ ├── TTwoDArray.cpp │ ├── TTwoDArray.h │ ├── TTwoDByteArray.cpp │ ├── TTwoDByteArray.h │ ├── utf8.h │ └── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h ├── discaster ├── Makefile └── src │ └── discaster.cpp ├── libdiscaster ├── Makefile └── src │ ├── classes │ ├── CdImage.cpp │ ├── CdImage.h │ ├── DiscPointerListing.cpp │ ├── DiscPointerListing.h │ ├── FileListing.cpp │ ├── FileListing.h │ ├── IsoDescriptorSetTerminator.cpp │ ├── IsoDescriptorSetTerminator.h │ ├── IsoFilesystem.cpp │ ├── IsoFilesystem.h │ ├── IsoPathTable.cpp │ ├── IsoPathTable.h │ ├── IsoPrimaryVolumeDescriptor.cpp │ ├── IsoPrimaryVolumeDescriptor.h │ ├── PathTableEntry.cpp │ └── PathTableEntry.h │ └── discaster │ ├── CdBuilder.cpp │ ├── CdBuilder.h │ ├── CdConsts.cpp │ ├── CdConsts.h │ ├── CdMsf.cpp │ ├── CdMsf.h │ ├── Classes.cpp │ ├── Classes.h │ ├── Config.cpp │ ├── Config.h │ ├── InputStream.cpp │ ├── InputStream.h │ ├── Lexeme.cpp │ ├── Lexeme.h │ ├── LexicalStream.cpp │ ├── LexicalStream.h │ ├── Object.cpp │ ├── Object.h │ ├── ParseNode.cpp │ ├── ParseNode.h │ ├── Primitives.cpp │ ├── Primitives.h │ ├── ScriptEvaluator.cpp │ ├── ScriptEvaluator.h │ ├── ScriptLexer.cpp │ ├── ScriptLexer.h │ ├── ScriptParser.cpp │ ├── ScriptParser.h │ ├── StdInputStream.cpp │ └── StdInputStream.h ├── libpce ├── Makefile └── src │ ├── madou1pce │ ├── Madou1PceLineWrapper.cpp │ ├── Madou1PceLineWrapper.h │ ├── Madou1PceScriptReader.cpp │ └── Madou1PceScriptReader.h │ ├── pce │ ├── PceColor.cpp │ ├── PceColor.h │ ├── PcePalette.cpp │ ├── PcePalette.h │ ├── PcePaletteLine.cpp │ ├── PcePaletteLine.h │ ├── PcePattern.cpp │ ├── PcePattern.h │ ├── PceSpriteId.cpp │ ├── PceSpriteId.h │ ├── PceSpritePattern.cpp │ ├── PceSpritePattern.h │ ├── PceTileId.cpp │ ├── PceTileId.h │ ├── PceTilemap.cpp │ ├── PceTilemap.h │ ├── PceVram.cpp │ ├── PceVram.h │ ├── okiadpcm.cpp │ └── okiadpcm.h │ ├── smpce │ ├── SmPceFileIndex.cpp │ ├── SmPceFileIndex.h │ ├── SmPceGraphic.cpp │ ├── SmPceGraphic.h │ ├── SmPceMsgScriptCmp.cpp │ ├── SmPceMsgScriptCmp.h │ ├── SmPceMsgScriptDecmp.cpp │ ├── SmPceMsgScriptDecmp.h │ ├── SmPceNameHasher.cpp │ ├── SmPceNameHasher.h │ ├── SmPceScriptOps.cpp │ ├── SmPceScriptOps.h │ ├── SmPceVarScriptCmp.cpp │ ├── SmPceVarScriptCmp.h │ ├── SmPceVarScriptDecmp.cpp │ └── SmPceVarScriptDecmp.h │ ├── tenma │ ├── TenmaLineWrapper.cpp │ ├── TenmaLineWrapper.h │ ├── TenmaMapIndex.cpp │ ├── TenmaMapIndex.h │ ├── TenmaMsgConsts.cpp │ ├── TenmaMsgConsts.h │ ├── TenmaMsgDism.cpp │ ├── TenmaMsgDism.h │ ├── TenmaMsgDismException.cpp │ ├── TenmaMsgDismException.h │ ├── TenmaScriptGenStream.cpp │ ├── TenmaScriptGenStream.h │ ├── TenmaScriptReader.cpp │ ├── TenmaScriptReader.h │ ├── TenmaSubString.cpp │ ├── TenmaSubString.h │ ├── TenmaTranslationSheet.cpp │ └── TenmaTranslationSheet.h │ └── yuna │ ├── YunaImage.cpp │ ├── YunaImage.h │ ├── YunaLineWrapper.cpp │ ├── YunaLineWrapper.h │ ├── YunaScriptReader.cpp │ ├── YunaScriptReader.h │ ├── YunaTranslationSheet.cpp │ ├── YunaTranslationSheet.h │ ├── YunaTranslationString.cpp │ └── YunaTranslationString.h └── tenma ├── Makefile ├── asm ├── include │ ├── global.inc │ ├── scene_adv.inc │ └── scene_adv_common.inc ├── main.s └── main_asm.sym ├── base ├── battle_1D.bin ├── battle_extra_27.bin ├── battle_text2_31.bin ├── battle_text_2D.bin ├── credits_4F.bin ├── empty_2.bin ├── generic_text_4B.bin ├── info_5B.bin ├── intro_3B.bin ├── kernel_9.bin ├── masakado_5F.bin ├── overw_13.bin ├── saveload_45.bin ├── shop_19.bin ├── special_51.bin ├── unknown1_23.bin ├── unknown2_35.bin └── unknown3_57.bin ├── build.sh ├── convertscript.sh ├── convertscript_fromxlsx.sh ├── convertscript_xlsx.sh ├── dumpadpcm.sh ├── dumpgrp.sh ├── dumpoldmaps.sh ├── font ├── index.txt ├── narrow │ ├── index.txt │ ├── sheet.png │ ├── sheet.xcf │ └── table.tbl ├── narrower │ ├── index.txt │ ├── sheet.png │ ├── sheet.xcf │ └── table.tbl ├── scene │ ├── index.txt │ ├── sheet.png │ ├── sheet.xcf │ └── table.tbl ├── sheet.png ├── sheet.xcf ├── table.tbl └── tall │ ├── index.txt │ ├── sheet.png │ ├── sheet.xcf │ └── table.tbl ├── makepatch.sh ├── render.sh ├── rsrc └── grp │ ├── gamble_bg.png │ ├── gamble_bg.xcf │ ├── gamble_dice.png │ ├── gamble_dice.xcf │ ├── interface1.png │ ├── interface2.png │ ├── interface3.png │ ├── interface3.xcf │ ├── intro_cred.png │ ├── intro_cred.txt │ ├── intro_cred.xcf │ ├── intro_cred_remap.png │ ├── intro_cred_remap.xcf │ ├── omake.png │ ├── omake.xcf │ ├── orig │ ├── gamble_bg.png │ ├── gamble_dice.png │ ├── interface1.png │ ├── interface2.png │ ├── interface3.png │ ├── omake.png │ ├── plans.png │ ├── pyramid_n.png │ ├── scderror.png │ ├── stonemason_bonus.png │ ├── theater_credits.png │ ├── theater_title.png │ └── theend.png │ ├── plans.png │ ├── plans.xcf │ ├── pyramid_n.png │ ├── pyramid_n.xcf │ ├── scderror.png │ ├── scderror.xcf │ ├── signs.png │ ├── signs.xcf │ ├── signs_gray.png │ ├── stonemason_bonus.png │ ├── stonemason_bonus.xcf │ ├── theater_acts.png │ ├── theater_acts.xcf │ ├── theater_acts_1.png │ ├── theater_acts_1.txt │ ├── theater_acts_2.png │ ├── theater_acts_2.txt │ ├── theater_acts_3.png │ ├── theater_acts_3.txt │ ├── theater_acts_remap.png │ ├── theater_credits.png │ ├── theater_credits.txt │ ├── theater_credits.xcf │ ├── theater_end.png │ ├── theater_end.txt │ ├── theater_end.xcf │ ├── theater_title.png │ ├── theater_title.xcf │ ├── theater_title_crop.png │ ├── theend.png │ ├── theend.txt │ ├── theend.xcf │ ├── theend_fade_0.png │ ├── theend_fade_0.txt │ ├── theend_fade_1.png │ ├── theend_fade_1.txt │ ├── theend_fade_2.png │ ├── theend_fade_2.txt │ ├── theend_fade_3.png │ ├── theend_fade_3.txt │ ├── theend_fade_4.png │ ├── theend_fade_4.txt │ ├── theend_fade_5.png │ ├── theend_fade_5.txt │ ├── theend_fade_6.png │ ├── theend_fade_6.txt │ ├── theend_fade_7.png │ ├── theend_fade_7.txt │ ├── theend_remap.png │ ├── theend_remap.xcf │ ├── title_logo.png │ └── title_logo.xcf ├── rsrc_raw ├── credits │ ├── str-0x101.bin │ ├── str-0x10D.bin │ ├── str-0x11A.bin │ ├── str-0x126.bin │ ├── str-0x132.bin │ ├── str-0x13E.bin │ ├── str-0x14B.bin │ ├── str-0x157.bin │ ├── str-0x163.bin │ ├── str-0x16F.bin │ ├── str-0x17C.bin │ ├── str-0x188.bin │ ├── str-0x19.bin │ ├── str-0x194.bin │ ├── str-0x1A0.bin │ ├── str-0x1AF.bin │ ├── str-0x1BB.bin │ ├── str-0x1C7.bin │ ├── str-0x1D3.bin │ ├── str-0x1DF.bin │ ├── str-0x1EC.bin │ ├── str-0x1F8.bin │ ├── str-0x206.bin │ ├── str-0x214.bin │ ├── str-0x221.bin │ ├── str-0x22D.bin │ ├── str-0x23C.bin │ ├── str-0x250.bin │ ├── str-0x25C.bin │ ├── str-0x269.bin │ ├── str-0x27.bin │ ├── str-0x271.bin │ ├── str-0x27D.bin │ ├── str-0x289.bin │ ├── str-0x298.bin │ ├── str-0x2A0.bin │ ├── str-0x2B7.bin │ ├── str-0x2C3.bin │ ├── str-0x2D0.bin │ ├── str-0x2D8.bin │ ├── str-0x2E7.bin │ ├── str-0x2F3.bin │ ├── str-0x2FF.bin │ ├── str-0x30C.bin │ ├── str-0x318.bin │ ├── str-0x325.bin │ ├── str-0x339.bin │ ├── str-0x34.bin │ ├── str-0x345.bin │ ├── str-0x352.bin │ ├── str-0x35C.bin │ ├── str-0x368.bin │ ├── str-0x374.bin │ ├── str-0x381.bin │ ├── str-0x399.bin │ ├── str-0x3A5.bin │ ├── str-0x3B2.bin │ ├── str-0x3C8.bin │ ├── str-0x3D4.bin │ ├── str-0x3E1.bin │ ├── str-0x3F9.bin │ ├── str-0x4.bin │ ├── str-0x405.bin │ ├── str-0x411.bin │ ├── str-0x41D.bin │ ├── str-0x42A.bin │ ├── str-0x43E.bin │ ├── str-0x44A.bin │ ├── str-0x457.bin │ ├── str-0x46.bin │ ├── str-0x473.bin │ ├── str-0x47F.bin │ ├── str-0x48B.bin │ ├── str-0x497.bin │ ├── str-0x4A4.bin │ ├── str-0x4AC.bin │ ├── str-0x4B8.bin │ ├── str-0x4C4.bin │ ├── str-0x4D0.bin │ ├── str-0x4DC.bin │ ├── str-0x4E9.bin │ ├── str-0x506.bin │ ├── str-0x512.bin │ ├── str-0x521.bin │ ├── str-0x52B.bin │ ├── str-0x53.bin │ ├── str-0x539.bin │ ├── str-0x546.bin │ ├── str-0x55A.bin │ ├── str-0x566.bin │ ├── str-0x572.bin │ ├── str-0x57E.bin │ ├── str-0x58B.bin │ ├── str-0x5A3.bin │ ├── str-0x5AF.bin │ ├── str-0x5BB.bin │ ├── str-0x5C7.bin │ ├── str-0x5D4.bin │ ├── str-0x5EC.bin │ ├── str-0x5F.bin │ ├── str-0x5F8.bin │ ├── str-0x604.bin │ ├── str-0x610.bin │ ├── str-0x61D.bin │ ├── str-0x62B.bin │ ├── str-0x637.bin │ ├── str-0x643.bin │ ├── str-0x653.bin │ ├── str-0x65F.bin │ ├── str-0x66C.bin │ ├── str-0x674.bin │ ├── str-0x68A.bin │ ├── str-0x698.bin │ ├── str-0x6A3.bin │ ├── str-0x6B7.bin │ ├── str-0x6C.bin │ ├── str-0x6C9.bin │ ├── str-0x6DB.bin │ ├── str-0x6EE.bin │ ├── str-0x702.bin │ ├── str-0x710.bin │ ├── str-0x728.bin │ ├── str-0x739.bin │ ├── str-0x74.bin │ ├── str-0x743.bin │ ├── str-0xA3.bin │ ├── str-0xAB.bin │ ├── str-0xBC.bin │ ├── str-0xC.bin │ ├── str-0xD0.bin │ ├── str-0xDD.bin │ ├── str-0xE9.bin │ └── str-0xF5.bin ├── grp │ ├── edo_vram.bin │ ├── gamble_bg.bin │ ├── gamble_dice.bin │ ├── interface.bin │ ├── interface1.bin │ ├── interface2.bin │ ├── interface3.bin │ ├── omake.bin │ ├── plans.bin │ ├── pyramid_n.bin │ ├── stonemason_bonus.bin │ ├── title_vram_bg_6000.bin │ ├── title_vram_bg_8000.bin │ ├── title_vram_sprites_2e00.bin │ └── title_vram_sprites_7200.bin └── pal │ ├── edo_main.pal │ ├── edo_main_signs.pal │ ├── intro_cred_sprite.pal │ ├── omake.pal │ ├── plans.pal │ ├── scderror.pal │ ├── theater_acts_sprite.pal │ ├── theater_acts_sprite_mod.pal │ ├── theater_credits_sprite.pal │ ├── theater_credits_sprite_mod.pal │ ├── theater_title.pal │ ├── theend_line.pal │ ├── theend_line_mod.pal │ ├── theend_sprite.pal │ ├── theend_sprite_mod.pal │ ├── title_bg.pal │ ├── title_logo.pal │ ├── title_logo_mod.pal │ └── title_sprite.pal ├── script ├── orig │ ├── credits_inc.s │ ├── script_battle.csv │ ├── script_boss.csv │ ├── script_bossalt.csv │ ├── script_credits.csv │ ├── script_dialogue.csv │ ├── script_enemy.csv │ ├── script_generic_text.csv │ ├── script_info.csv │ ├── script_intro_ending.csv │ ├── script_items.csv │ ├── script_menu.csv │ ├── script_misc.csv │ ├── script_saveload.csv │ ├── script_shop.csv │ ├── script_subtitle.csv │ ├── spec_battle.txt │ ├── spec_boss.txt │ ├── spec_bossalt.txt │ ├── spec_credits.txt │ ├── spec_dialogue.txt │ ├── spec_enemy.txt │ ├── spec_generic_text.txt │ ├── spec_info.txt │ ├── spec_intro_ending.txt │ ├── spec_items.txt │ ├── spec_menu.txt │ ├── spec_misc.txt │ ├── spec_saveload.txt │ ├── spec_shop.txt │ └── spec_subtitle.txt ├── script_battle.csv ├── script_battle.ods ├── script_boss.csv ├── script_boss.ods ├── script_bossalt.csv ├── script_bossalt.ods ├── script_credits.csv ├── script_credits.ods ├── script_dialogue.csv ├── script_dialogue.ods ├── script_enemy.csv ├── script_enemy.ods ├── script_generic_text.csv ├── script_generic_text.ods ├── script_info.csv ├── script_info.ods ├── script_intro_ending.csv ├── script_intro_ending.ods ├── script_items.csv ├── script_items.ods ├── script_menu.csv ├── script_menu.ods ├── script_misc.csv ├── script_misc.ods ├── script_saveload.csv ├── script_saveload.ods ├── script_shop.csv ├── script_shop.ods ├── script_subtitle.csv ├── script_subtitle.ods ├── spec_battle.txt ├── spec_boss.txt ├── spec_bossalt.txt ├── spec_credits.txt ├── spec_dialogue.txt ├── spec_enemy.txt ├── spec_generic_text.txt ├── spec_info.txt ├── spec_intro_ending.txt ├── spec_items.txt ├── spec_menu.txt ├── spec_misc.txt ├── spec_saveload.txt ├── spec_shop.txt └── spec_subtitle.txt ├── src ├── adpcmdmp_pce.cpp ├── bigspriteundmp_pce.cpp ├── colorconv_pcergb.cpp ├── colorconv_rgbpce.cpp ├── datpad_double.cpp ├── datpatch.cpp ├── datsnip.cpp ├── decolorize_pce.cpp ├── dism_quoter.cpp ├── dismstripper.cpp ├── fontbuild.cpp ├── fontrender.cpp ├── grpdmp_pce.cpp ├── grpundmp_pce.cpp ├── grpundmp_pce_new.cpp ├── grpunmap_pce.cpp ├── printwordtable.cpp ├── relsearch.cpp ├── sjis_srch.cpp ├── spritebuild_pce.cpp ├── spritebuild_pce_old.cpp ├── spritedmp_pce.cpp ├── spritelayout_pce.cpp ├── spriteundmp_pce.cpp ├── tenma_mapdecmp.cpp ├── tenma_maprender.cpp ├── tenma_maprender_generic.cpp ├── tenma_mapscan.cpp ├── tenma_patch.cpp ├── tenma_prep.cpp ├── tenma_scriptbuild.cpp ├── tenma_scriptcsvconv.cpp ├── tenma_scriptgen.cpp ├── tenma_scriptimport.cpp ├── tenma_scriptwrap.cpp ├── tenma_signgen.cpp ├── tenma_signscan.cpp ├── tenma_spriteprep.cpp ├── tenma_string_scan.cpp ├── test.cpp ├── textscr_commenter.cpp ├── tilemapper_pce.cpp └── xlsxfix.cpp ├── table ├── ascii.tbl ├── sjis.tbl ├── sjis_utf8.tbl ├── sjis_utf8_tenma_credits.tbl ├── sjis_utf8_tenma_full.tbl ├── sjis_utf8_tenma_std.tbl ├── sjis_utf8_tenma_std_with_null.tbl ├── tenma_menu_en.tbl ├── tenma_scenes_en.tbl └── tenma_std_en.tbl ├── tenma.dsc ├── tenma_iso_build.cue ├── tenma_notes ├── tilemappers ├── scderror.txt └── theater_title.txt └── wla-dx ├── CHANGELOG ├── CMakeLists.txt ├── CONTRIBUTING.md ├── FILE_FORMATS ├── INSTALL ├── INSTALL.md ├── LICENSE ├── README.md ├── binaries └── .gitignore ├── byte_tester ├── CMakeLists.txt └── main.c ├── crc32.c ├── crc32.h ├── decode_6502.c ├── decode_6510.c ├── decode_65816.c ├── decode_65c02.c ├── decode_6800.c ├── decode_6801.c ├── decode_6809.c ├── decode_8008.c ├── decode_8080.c ├── decode_gb.c ├── decode_huc6280.c ├── decode_spc700.c ├── decode_z80.c ├── defines.h ├── doc ├── CMakeLists.txt ├── README.md ├── archoverview.rst ├── arithmetics.rst ├── asmdiv.rst ├── asmsyntax.rst ├── bintodb.rst ├── bugs.rst ├── codetoknow.rst ├── compiling.rst ├── conf.py ├── errormsg.rst ├── extraflags.rst ├── files.rst ├── gb-support.rst ├── goodtoknow.rst ├── introduction.rst ├── legal.rst ├── linking.rst ├── man │ ├── wla-cpu.rst │ ├── wlab.rst │ └── wlalink.rst ├── sphinx │ ├── globalindex.py │ └── singletext.py ├── symbols.rst ├── tempfiles.rst ├── theme │ ├── layout.html │ └── theme.conf ├── wla-dx.rst └── wlaflags.rst ├── examples ├── 6502 │ ├── compiler_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── include │ │ └── nes_memory.i │ ├── linker_test │ │ ├── defines.i │ │ ├── linker_test.s │ │ ├── linkfile │ │ ├── makefile │ │ ├── nop.s │ │ ├── setup.s │ │ └── testsfile │ ├── operand_hint_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ └── struct_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── 6510 │ ├── c64_prg_test │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── linker_test │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── setup.s │ ├── operand_hint_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ └── zero_page │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── 6800 │ └── linker_test │ │ ├── library.s │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile ├── 6801 │ └── linker_test │ │ ├── library.s │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── 6809 │ └── linker_test │ │ ├── library.s │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── 8008 │ ├── linker_test │ │ ├── library.s │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ └── rst_test │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile ├── 8080 │ ├── linker_test │ │ ├── library.s │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ └── rst_test │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile ├── 65816 │ ├── base_test_1 │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── base_test_2 │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── base_test_3 │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── base_test_4 │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── checksum_12mbit_lorom │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── checksum_24mbit_lorom │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── checksum_8mbit_hirom │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── checksum_8mbit_lorom │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── include │ │ └── snes_memory.i │ ├── linker_test │ │ ├── can_you_tell_this_name_is_intended_to_test_the_capability_of_wla_to_handle_long_filenames_and_stufffffffff.s │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ ├── snes_memory.i │ │ └── test.s │ ├── name_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── nocashsns_symbol_file │ │ ├── check_symbols.sh │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── opcode_test │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ └── operand_hint_test │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile ├── .gitignore ├── 65c02 │ └── linker_test │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── setup.s ├── README ├── gb-z80 │ ├── appendto_test │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ ├── background_test │ │ ├── cgb_hardware.i │ │ ├── defines.i │ │ ├── gb_memory.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── old.gb │ ├── include │ │ ├── cgb_hardware.i │ │ ├── gb_banks.i │ │ ├── gb_hardware.i │ │ ├── gb_memory.i │ │ ├── nintendo_logo.i │ │ └── pocket_voice.i │ ├── lib │ │ ├── makefile │ │ └── src │ │ │ ├── memcpy.s │ │ │ ├── nop.s │ │ │ ├── palette.s │ │ │ ├── screen.s │ │ │ ├── speed.s │ │ │ ├── spritedma.s │ │ │ └── vbi.s │ ├── linker_test │ │ ├── cgb_hardware.i │ │ ├── defines1.i │ │ ├── defines2.i │ │ ├── exmain.s │ │ ├── gb_memory1.i │ │ ├── gb_memory2.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ ├── setup.s │ │ ├── test.i │ │ └── testsfile │ ├── namespace_test │ │ ├── cgb_hardware.i │ │ ├── defines1.i │ │ ├── defines2.i │ │ ├── gb_memory1.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ └── setup.s │ ├── rst_test │ │ ├── main.s │ │ ├── makefile │ │ └── testsfile │ ├── sintest │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ └── union_test │ │ ├── cgb_hardware.i │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── huc6280 │ ├── linker_test │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile │ └── ram_sections │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ └── makefile ├── spc-700 │ └── linker_test │ │ ├── defines.i │ │ ├── linkfile │ │ ├── main.s │ │ ├── makefile │ │ ├── setup.s │ │ └── testsfile └── z80 │ ├── caddr_test │ ├── linkfile │ ├── makefile │ └── sms.s │ ├── features_test │ ├── features_test.s │ └── sorority.bin │ ├── include │ └── ti86asm.inc │ ├── library_test │ └── lib_arithm.s │ ├── linker_header_test │ ├── defines.i │ ├── linkfile │ ├── main.s │ ├── makefile │ └── setup.s │ ├── linker_test_1 │ ├── defines.i │ ├── linkfile │ ├── main.s │ ├── makefile │ ├── setup.s │ └── testsfile │ ├── linker_test_2 │ ├── defines.i │ ├── linkfile │ ├── main.s │ ├── makefile │ └── setup.s │ ├── ram_sections │ ├── library.s │ ├── linkfile │ ├── makefile │ ├── sms.s │ └── testsfile │ ├── rept_test │ ├── linkfile │ ├── main.s │ └── makefile │ ├── rst_test │ ├── linkfile │ ├── makefile │ ├── sms.s │ └── testsfile │ ├── sdsc_test │ ├── linkfile │ ├── makefile │ └── sms.s │ ├── sms_test │ ├── data1 │ │ └── data.txt │ ├── data2 │ │ └── data.txt │ ├── data3 │ │ └── data.txt │ ├── linkfile │ ├── makefile │ ├── sms.s │ └── testsfile │ └── smsheader_test │ ├── data1 │ └── data.txt │ ├── data2 │ └── data.txt │ ├── data3 │ └── data.txt │ ├── linkfile │ ├── makefile │ └── sms.s ├── hashmap.c ├── hashmap.h ├── historical ├── README ├── README.md ├── SCOPTIONS ├── amiga ├── amigaos4 ├── dasm_opcodes │ ├── defines.h │ ├── main.c │ ├── main.h │ └── makefile ├── icopy │ ├── LICENSE │ ├── SCOPTIONS │ ├── defines.h │ ├── main.c │ ├── main.h │ ├── makefile │ ├── makefile.msdos │ ├── makefile.unix │ ├── makefile.win32 │ └── smakefile ├── makefiles │ ├── makefile.amiga.6502 │ ├── makefile.amiga.6510 │ ├── makefile.amiga.65816 │ ├── makefile.amiga.65c02 │ ├── makefile.amiga.6800 │ ├── makefile.amiga.6801 │ ├── makefile.amiga.6809 │ ├── makefile.amiga.8008 │ ├── makefile.amiga.8080 │ ├── makefile.amiga.gb │ ├── makefile.amiga.huc6280 │ ├── makefile.amiga.spc700 │ ├── makefile.amiga.z80 │ ├── makefile.msdos.6502 │ ├── makefile.msdos.6510 │ ├── makefile.msdos.65816 │ ├── makefile.msdos.65c02 │ ├── makefile.msdos.6800 │ ├── makefile.msdos.6801 │ ├── makefile.msdos.6809 │ ├── makefile.msdos.8008 │ ├── makefile.msdos.8080 │ ├── makefile.msdos.gb │ ├── makefile.msdos.huc6280 │ ├── makefile.msdos.spc700 │ ├── makefile.msdos.z80 │ ├── makefile.win32.all │ ├── scoptions.000 │ ├── scoptions.020 │ ├── smake.6502 │ ├── smake.6510 │ ├── smake.65816 │ ├── smake.65c02 │ ├── smake.6800 │ ├── smake.6801 │ ├── smake.6809 │ ├── smake.8008 │ ├── smake.8080 │ ├── smake.gb │ ├── smake.huc6280 │ ├── smake.spc700 │ └── smake.z80 ├── msdos.bat ├── txt │ ├── opcodes │ │ ├── create_lists.sh │ │ ├── header_a_6502.txt │ │ ├── header_a_6510.txt │ │ ├── header_a_65816.txt │ │ ├── header_a_65c02.txt │ │ ├── header_a_gb.txt │ │ ├── header_a_huc6280.txt │ │ ├── header_a_spc700.txt │ │ ├── header_a_z80.txt │ │ ├── header_o_6502.txt │ │ ├── header_o_6510.txt │ │ ├── header_o_65816.txt │ │ ├── header_o_65c02.txt │ │ ├── header_o_gb.txt │ │ ├── header_o_huc6280.txt │ │ ├── header_o_spc700.txt │ │ ├── header_o_z80.txt │ │ ├── main.c │ │ ├── makefile │ │ ├── mnemonics_6502_a.txt │ │ ├── mnemonics_6502_o.txt │ │ ├── mnemonics_6510_a.txt │ │ ├── mnemonics_6510_o.txt │ │ ├── mnemonics_65816_a.txt │ │ ├── mnemonics_65816_o.txt │ │ ├── mnemonics_65c02_a.txt │ │ ├── mnemonics_65c02_o.txt │ │ ├── mnemonics_gb_a.txt │ │ ├── mnemonics_gb_o.txt │ │ ├── mnemonics_huc6280_a.txt │ │ ├── mnemonics_huc6280_o.txt │ │ ├── mnemonics_spc700_a.txt │ │ ├── mnemonics_spc700_o.txt │ │ ├── mnemonics_z80_a.txt │ │ └── mnemonics_z80_o.txt │ ├── wla_file_formats.txt │ └── z80_dup.txt ├── wlab │ ├── SCOPTIONS │ ├── makefile.amiga │ ├── makefile.msdos │ └── smakefile ├── wlad │ ├── .gitignore │ ├── LICENSE │ ├── SCOPTIONS │ ├── defines.h │ ├── main.c │ ├── main.h │ ├── makefile.amiga │ ├── makefile.msdos │ ├── makefile.unix │ ├── opcodes_gb.c │ └── smakefile ├── wlad_new │ ├── SCOPTIONS │ ├── dasm_analyzer.c │ ├── dasm_analyzer.h │ ├── dasm_brutal.c │ ├── dasm_brutal.h │ ├── data.c │ ├── data.h │ ├── defines.h │ ├── main.c │ ├── main.h │ ├── makefile │ ├── makefile.msdos │ ├── makefile.unix │ ├── makefile.win32 │ ├── makefile.win32.orig │ ├── mnemonics_gb.c │ └── smakefile └── wlalink │ ├── SCOPTIONS │ ├── makefile.amiga │ ├── makefile.msdos │ ├── makefile.win32 │ └── smakefile ├── include_file.c ├── include_file.h ├── listfile.c ├── listfile.h ├── main.c ├── main.h ├── memorymaps ├── gameboy.i ├── smsgg1.i ├── smsgg2.i └── snes.i ├── opcode_table_generator ├── CMakeLists.txt ├── create_tables.bat ├── defines.h └── main.c ├── opcodes_6502.c ├── opcodes_6510.c ├── opcodes_65816.c ├── opcodes_65c02.c ├── opcodes_6800.c ├── opcodes_6801.c ├── opcodes_6809.c ├── opcodes_8008.c ├── opcodes_8080.c ├── opcodes_gb.c ├── opcodes_huc6280.c ├── opcodes_spc700.c ├── opcodes_z80.c ├── parse.c ├── parse.h ├── pass_1.c ├── pass_1.h ├── pass_2.c ├── pass_2.h ├── pass_3.c ├── pass_3.h ├── pass_4.c ├── pass_4.h ├── print_opcodes ├── defines.h ├── main.c └── makefile ├── run_unit_tests.sh ├── shared.h ├── stack.c ├── stack.h ├── wlab ├── .gitignore ├── CMakeLists.txt ├── defines.h ├── main.c └── main.h └── wlalink ├── .gitignore ├── CMakeLists.txt ├── analyze.c ├── analyze.h ├── check.c ├── check.h ├── compute.c ├── compute.h ├── defines.h ├── discard.c ├── discard.h ├── files.c ├── files.h ├── listfile.c ├── listfile.h ├── main.c ├── main.h ├── memory.c ├── memory.h ├── parse.c ├── parse.h ├── write.c └── write.h /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/README -------------------------------------------------------------------------------- /blackt/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/COPYING -------------------------------------------------------------------------------- /blackt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/Makefile -------------------------------------------------------------------------------- /blackt/src/exception/TException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/exception/TException.cpp -------------------------------------------------------------------------------- /blackt/src/exception/TException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/exception/TException.h -------------------------------------------------------------------------------- /blackt/src/exception/TGenericException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/exception/TGenericException.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiEvent.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiEvent.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiGridLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiGridLayer.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiGridLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiGridLayer.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiIndexedDisplayScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiIndexedDisplayScene.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiIndexedPickerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiIndexedPickerLayer.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiIndexedPickerScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiIndexedPickerScene.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiScene.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiScene.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiSceneLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiSceneLayer.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiSceneLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiSceneLayer.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestLayer.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestLayer.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestPickerScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestPickerScene.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestPickerScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestPickerScene.h -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestScene.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TGuiTestScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TGuiTestScene.h -------------------------------------------------------------------------------- /blackt/src/tgui/TLayeredGuiScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TLayeredGuiScene.cpp -------------------------------------------------------------------------------- /blackt/src/tgui/TLayeredGuiScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/tgui/TLayeredGuiScene.h -------------------------------------------------------------------------------- /blackt/src/util/ByteConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/ByteConversion.cpp -------------------------------------------------------------------------------- /blackt/src/util/ByteConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/ByteConversion.h -------------------------------------------------------------------------------- /blackt/src/util/ByteSizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/ByteSizes.cpp -------------------------------------------------------------------------------- /blackt/src/util/ByteSizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/ByteSizes.h -------------------------------------------------------------------------------- /blackt/src/util/EndiannessType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/EndiannessType.cpp -------------------------------------------------------------------------------- /blackt/src/util/EndiannessType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/EndiannessType.h -------------------------------------------------------------------------------- /blackt/src/util/MiscMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/MiscMath.cpp -------------------------------------------------------------------------------- /blackt/src/util/MiscMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/MiscMath.h -------------------------------------------------------------------------------- /blackt/src/util/SignednessType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/SignednessType.cpp -------------------------------------------------------------------------------- /blackt/src/util/SignednessType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/SignednessType.h -------------------------------------------------------------------------------- /blackt/src/util/TArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TArray.cpp -------------------------------------------------------------------------------- /blackt/src/util/TArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TArray.h -------------------------------------------------------------------------------- /blackt/src/util/TBitmapFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBitmapFont.cpp -------------------------------------------------------------------------------- /blackt/src/util/TBitmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBitmapFont.h -------------------------------------------------------------------------------- /blackt/src/util/TBitmapFontChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBitmapFontChar.cpp -------------------------------------------------------------------------------- /blackt/src/util/TBitmapFontChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBitmapFontChar.h -------------------------------------------------------------------------------- /blackt/src/util/TBufStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBufStream.cpp -------------------------------------------------------------------------------- /blackt/src/util/TBufStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TBufStream.h -------------------------------------------------------------------------------- /blackt/src/util/TByte.cpp: -------------------------------------------------------------------------------- 1 | #include "util/TByte.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /blackt/src/util/TByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TByte.h -------------------------------------------------------------------------------- /blackt/src/util/TCdMsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCdMsf.cpp -------------------------------------------------------------------------------- /blackt/src/util/TCdMsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCdMsf.h -------------------------------------------------------------------------------- /blackt/src/util/TCharFmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCharFmt.cpp -------------------------------------------------------------------------------- /blackt/src/util/TCharFmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCharFmt.h -------------------------------------------------------------------------------- /blackt/src/util/TColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TColor.cpp -------------------------------------------------------------------------------- /blackt/src/util/TColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TColor.h -------------------------------------------------------------------------------- /blackt/src/util/TConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TConstants.cpp -------------------------------------------------------------------------------- /blackt/src/util/TConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TConstants.h -------------------------------------------------------------------------------- /blackt/src/util/TCoordPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCoordPair.cpp -------------------------------------------------------------------------------- /blackt/src/util/TCoordPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCoordPair.h -------------------------------------------------------------------------------- /blackt/src/util/TCsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCsv.cpp -------------------------------------------------------------------------------- /blackt/src/util/TCsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TCsv.h -------------------------------------------------------------------------------- /blackt/src/util/TEdcCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TEdcCalc.cpp -------------------------------------------------------------------------------- /blackt/src/util/TEdcCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TEdcCalc.h -------------------------------------------------------------------------------- /blackt/src/util/TFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFileInfo.cpp -------------------------------------------------------------------------------- /blackt/src/util/TFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFileInfo.h -------------------------------------------------------------------------------- /blackt/src/util/TFileManip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFileManip.cpp -------------------------------------------------------------------------------- /blackt/src/util/TFileManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFileManip.h -------------------------------------------------------------------------------- /blackt/src/util/TFreeSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFreeSpace.cpp -------------------------------------------------------------------------------- /blackt/src/util/TFreeSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TFreeSpace.h -------------------------------------------------------------------------------- /blackt/src/util/TGaloisField256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGaloisField256.cpp -------------------------------------------------------------------------------- /blackt/src/util/TGaloisField256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGaloisField256.h -------------------------------------------------------------------------------- /blackt/src/util/TGaloisField256Cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGaloisField256Cd.cpp -------------------------------------------------------------------------------- /blackt/src/util/TGaloisField256Cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGaloisField256Cd.h -------------------------------------------------------------------------------- /blackt/src/util/TGraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGraphic.cpp -------------------------------------------------------------------------------- /blackt/src/util/TGraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TGraphic.h -------------------------------------------------------------------------------- /blackt/src/util/TIfstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TIfstream.cpp -------------------------------------------------------------------------------- /blackt/src/util/TIfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TIfstream.h -------------------------------------------------------------------------------- /blackt/src/util/TIniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TIniFile.cpp -------------------------------------------------------------------------------- /blackt/src/util/TIniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TIniFile.h -------------------------------------------------------------------------------- /blackt/src/util/TInputEventData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TInputEventData.cpp -------------------------------------------------------------------------------- /blackt/src/util/TInputEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TInputEventData.h -------------------------------------------------------------------------------- /blackt/src/util/TInsertionSortedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TInsertionSortedList.cpp -------------------------------------------------------------------------------- /blackt/src/util/TInsertionSortedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TInsertionSortedList.h -------------------------------------------------------------------------------- /blackt/src/util/TLineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TLineWrapper.cpp -------------------------------------------------------------------------------- /blackt/src/util/TLineWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TLineWrapper.h -------------------------------------------------------------------------------- /blackt/src/util/TOfstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TOfstream.cpp -------------------------------------------------------------------------------- /blackt/src/util/TOfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TOfstream.h -------------------------------------------------------------------------------- /blackt/src/util/TOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TOpt.cpp -------------------------------------------------------------------------------- /blackt/src/util/TOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TOpt.h -------------------------------------------------------------------------------- /blackt/src/util/TParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TParse.cpp -------------------------------------------------------------------------------- /blackt/src/util/TParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TParse.h -------------------------------------------------------------------------------- /blackt/src/util/TPngConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TPngConversion.cpp -------------------------------------------------------------------------------- /blackt/src/util/TPngConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TPngConversion.h -------------------------------------------------------------------------------- /blackt/src/util/TRasterFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TRasterFont.cpp -------------------------------------------------------------------------------- /blackt/src/util/TRasterFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TRasterFont.h -------------------------------------------------------------------------------- /blackt/src/util/TRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TRect.cpp -------------------------------------------------------------------------------- /blackt/src/util/TRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TRect.h -------------------------------------------------------------------------------- /blackt/src/util/TSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSerialize.cpp -------------------------------------------------------------------------------- /blackt/src/util/TSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSerialize.h -------------------------------------------------------------------------------- /blackt/src/util/TSjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSjis.cpp -------------------------------------------------------------------------------- /blackt/src/util/TSjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSjis.h -------------------------------------------------------------------------------- /blackt/src/util/TSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSort.cpp -------------------------------------------------------------------------------- /blackt/src/util/TSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSort.h -------------------------------------------------------------------------------- /blackt/src/util/TSoundFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSoundFile.cpp -------------------------------------------------------------------------------- /blackt/src/util/TSoundFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSoundFile.h -------------------------------------------------------------------------------- /blackt/src/util/TSptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSptr.cpp -------------------------------------------------------------------------------- /blackt/src/util/TSptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TSptr.h -------------------------------------------------------------------------------- /blackt/src/util/TStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStream.cpp -------------------------------------------------------------------------------- /blackt/src/util/TStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStream.h -------------------------------------------------------------------------------- /blackt/src/util/TString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TString.cpp -------------------------------------------------------------------------------- /blackt/src/util/TString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TString.h -------------------------------------------------------------------------------- /blackt/src/util/TStringConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringConversion.cpp -------------------------------------------------------------------------------- /blackt/src/util/TStringConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringConversion.h -------------------------------------------------------------------------------- /blackt/src/util/TStringEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringEncoding.cpp -------------------------------------------------------------------------------- /blackt/src/util/TStringEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringEncoding.h -------------------------------------------------------------------------------- /blackt/src/util/TStringSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringSearch.cpp -------------------------------------------------------------------------------- /blackt/src/util/TStringSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TStringSearch.h -------------------------------------------------------------------------------- /blackt/src/util/TThingyTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TThingyTable.cpp -------------------------------------------------------------------------------- /blackt/src/util/TThingyTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TThingyTable.h -------------------------------------------------------------------------------- /blackt/src/util/TTransModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTransModel.cpp -------------------------------------------------------------------------------- /blackt/src/util/TTransModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTransModel.h -------------------------------------------------------------------------------- /blackt/src/util/TTwoDArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTwoDArray.cpp -------------------------------------------------------------------------------- /blackt/src/util/TTwoDArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTwoDArray.h -------------------------------------------------------------------------------- /blackt/src/util/TTwoDByteArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTwoDByteArray.cpp -------------------------------------------------------------------------------- /blackt/src/util/TTwoDByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/TTwoDByteArray.h -------------------------------------------------------------------------------- /blackt/src/util/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/utf8.h -------------------------------------------------------------------------------- /blackt/src/util/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/utf8/checked.h -------------------------------------------------------------------------------- /blackt/src/util/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/utf8/core.h -------------------------------------------------------------------------------- /blackt/src/util/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/blackt/src/util/utf8/unchecked.h -------------------------------------------------------------------------------- /discaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/discaster/Makefile -------------------------------------------------------------------------------- /discaster/src/discaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/discaster/src/discaster.cpp -------------------------------------------------------------------------------- /libdiscaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/Makefile -------------------------------------------------------------------------------- /libdiscaster/src/classes/CdImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/CdImage.cpp -------------------------------------------------------------------------------- /libdiscaster/src/classes/CdImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/CdImage.h -------------------------------------------------------------------------------- /libdiscaster/src/classes/FileListing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/FileListing.cpp -------------------------------------------------------------------------------- /libdiscaster/src/classes/FileListing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/FileListing.h -------------------------------------------------------------------------------- /libdiscaster/src/classes/IsoFilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/IsoFilesystem.h -------------------------------------------------------------------------------- /libdiscaster/src/classes/IsoPathTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/IsoPathTable.cpp -------------------------------------------------------------------------------- /libdiscaster/src/classes/IsoPathTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/IsoPathTable.h -------------------------------------------------------------------------------- /libdiscaster/src/classes/PathTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/classes/PathTableEntry.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdBuilder.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdBuilder.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdConsts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdConsts.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdConsts.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdMsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdMsf.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/CdMsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/CdMsf.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Classes.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Classes.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Config.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Config.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/InputStream.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Lexeme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Lexeme.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Lexeme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Lexeme.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Object.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Object.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/ParseNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/ParseNode.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/ParseNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/ParseNode.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Primitives.cpp -------------------------------------------------------------------------------- /libdiscaster/src/discaster/Primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/Primitives.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/ScriptLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/ScriptLexer.h -------------------------------------------------------------------------------- /libdiscaster/src/discaster/ScriptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libdiscaster/src/discaster/ScriptParser.h -------------------------------------------------------------------------------- /libpce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/Makefile -------------------------------------------------------------------------------- /libpce/src/pce/PceColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceColor.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceColor.h -------------------------------------------------------------------------------- /libpce/src/pce/PcePalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePalette.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PcePalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePalette.h -------------------------------------------------------------------------------- /libpce/src/pce/PcePaletteLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePaletteLine.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PcePaletteLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePaletteLine.h -------------------------------------------------------------------------------- /libpce/src/pce/PcePattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePattern.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PcePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PcePattern.h -------------------------------------------------------------------------------- /libpce/src/pce/PceSpriteId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceSpriteId.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceSpriteId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceSpriteId.h -------------------------------------------------------------------------------- /libpce/src/pce/PceSpritePattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceSpritePattern.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceSpritePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceSpritePattern.h -------------------------------------------------------------------------------- /libpce/src/pce/PceTileId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceTileId.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceTileId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceTileId.h -------------------------------------------------------------------------------- /libpce/src/pce/PceTilemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceTilemap.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceTilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceTilemap.h -------------------------------------------------------------------------------- /libpce/src/pce/PceVram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceVram.cpp -------------------------------------------------------------------------------- /libpce/src/pce/PceVram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/PceVram.h -------------------------------------------------------------------------------- /libpce/src/pce/okiadpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/okiadpcm.cpp -------------------------------------------------------------------------------- /libpce/src/pce/okiadpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/pce/okiadpcm.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceFileIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceFileIndex.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceFileIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceFileIndex.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceGraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceGraphic.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceGraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceGraphic.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceMsgScriptCmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceMsgScriptCmp.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceMsgScriptCmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceMsgScriptCmp.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceMsgScriptDecmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceMsgScriptDecmp.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceMsgScriptDecmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceMsgScriptDecmp.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceNameHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceNameHasher.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceNameHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceNameHasher.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceScriptOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceScriptOps.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceScriptOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceScriptOps.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceVarScriptCmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceVarScriptCmp.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceVarScriptCmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceVarScriptCmp.h -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceVarScriptDecmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceVarScriptDecmp.cpp -------------------------------------------------------------------------------- /libpce/src/smpce/SmPceVarScriptDecmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/smpce/SmPceVarScriptDecmp.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaLineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaLineWrapper.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaLineWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaLineWrapper.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMapIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMapIndex.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMapIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMapIndex.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMsgConsts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMsgConsts.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMsgConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMsgConsts.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMsgDism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMsgDism.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMsgDism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMsgDism.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaMsgDismException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaMsgDismException.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaScriptGenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaScriptGenStream.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaScriptGenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaScriptGenStream.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaScriptReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaScriptReader.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaScriptReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaScriptReader.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaSubString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaSubString.cpp -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaSubString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaSubString.h -------------------------------------------------------------------------------- /libpce/src/tenma/TenmaTranslationSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/tenma/TenmaTranslationSheet.h -------------------------------------------------------------------------------- /libpce/src/yuna/YunaImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaImage.cpp -------------------------------------------------------------------------------- /libpce/src/yuna/YunaImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaImage.h -------------------------------------------------------------------------------- /libpce/src/yuna/YunaLineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaLineWrapper.cpp -------------------------------------------------------------------------------- /libpce/src/yuna/YunaLineWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaLineWrapper.h -------------------------------------------------------------------------------- /libpce/src/yuna/YunaScriptReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaScriptReader.cpp -------------------------------------------------------------------------------- /libpce/src/yuna/YunaScriptReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaScriptReader.h -------------------------------------------------------------------------------- /libpce/src/yuna/YunaTranslationSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaTranslationSheet.cpp -------------------------------------------------------------------------------- /libpce/src/yuna/YunaTranslationSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaTranslationSheet.h -------------------------------------------------------------------------------- /libpce/src/yuna/YunaTranslationString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaTranslationString.cpp -------------------------------------------------------------------------------- /libpce/src/yuna/YunaTranslationString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/libpce/src/yuna/YunaTranslationString.h -------------------------------------------------------------------------------- /tenma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/Makefile -------------------------------------------------------------------------------- /tenma/asm/include/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/asm/include/global.inc -------------------------------------------------------------------------------- /tenma/asm/include/scene_adv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/asm/include/scene_adv.inc -------------------------------------------------------------------------------- /tenma/asm/include/scene_adv_common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/asm/include/scene_adv_common.inc -------------------------------------------------------------------------------- /tenma/asm/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/asm/main.s -------------------------------------------------------------------------------- /tenma/asm/main_asm.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/asm/main_asm.sym -------------------------------------------------------------------------------- /tenma/base/battle_1D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/battle_1D.bin -------------------------------------------------------------------------------- /tenma/base/battle_extra_27.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/battle_extra_27.bin -------------------------------------------------------------------------------- /tenma/base/battle_text2_31.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/battle_text2_31.bin -------------------------------------------------------------------------------- /tenma/base/battle_text_2D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/battle_text_2D.bin -------------------------------------------------------------------------------- /tenma/base/credits_4F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/credits_4F.bin -------------------------------------------------------------------------------- /tenma/base/empty_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/empty_2.bin -------------------------------------------------------------------------------- /tenma/base/generic_text_4B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/generic_text_4B.bin -------------------------------------------------------------------------------- /tenma/base/info_5B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/info_5B.bin -------------------------------------------------------------------------------- /tenma/base/intro_3B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/intro_3B.bin -------------------------------------------------------------------------------- /tenma/base/kernel_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/kernel_9.bin -------------------------------------------------------------------------------- /tenma/base/masakado_5F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/masakado_5F.bin -------------------------------------------------------------------------------- /tenma/base/overw_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/overw_13.bin -------------------------------------------------------------------------------- /tenma/base/saveload_45.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/saveload_45.bin -------------------------------------------------------------------------------- /tenma/base/shop_19.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/shop_19.bin -------------------------------------------------------------------------------- /tenma/base/special_51.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/special_51.bin -------------------------------------------------------------------------------- /tenma/base/unknown1_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/unknown1_23.bin -------------------------------------------------------------------------------- /tenma/base/unknown2_35.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/unknown2_35.bin -------------------------------------------------------------------------------- /tenma/base/unknown3_57.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/base/unknown3_57.bin -------------------------------------------------------------------------------- /tenma/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/build.sh -------------------------------------------------------------------------------- /tenma/convertscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/convertscript.sh -------------------------------------------------------------------------------- /tenma/convertscript_fromxlsx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/convertscript_fromxlsx.sh -------------------------------------------------------------------------------- /tenma/convertscript_xlsx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/convertscript_xlsx.sh -------------------------------------------------------------------------------- /tenma/dumpadpcm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/dumpadpcm.sh -------------------------------------------------------------------------------- /tenma/dumpgrp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/dumpgrp.sh -------------------------------------------------------------------------------- /tenma/dumpoldmaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/dumpoldmaps.sh -------------------------------------------------------------------------------- /tenma/font/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/index.txt -------------------------------------------------------------------------------- /tenma/font/narrow/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrow/index.txt -------------------------------------------------------------------------------- /tenma/font/narrow/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrow/sheet.png -------------------------------------------------------------------------------- /tenma/font/narrow/sheet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrow/sheet.xcf -------------------------------------------------------------------------------- /tenma/font/narrow/table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrow/table.tbl -------------------------------------------------------------------------------- /tenma/font/narrower/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrower/index.txt -------------------------------------------------------------------------------- /tenma/font/narrower/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrower/sheet.png -------------------------------------------------------------------------------- /tenma/font/narrower/sheet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrower/sheet.xcf -------------------------------------------------------------------------------- /tenma/font/narrower/table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/narrower/table.tbl -------------------------------------------------------------------------------- /tenma/font/scene/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/scene/index.txt -------------------------------------------------------------------------------- /tenma/font/scene/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/scene/sheet.png -------------------------------------------------------------------------------- /tenma/font/scene/sheet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/scene/sheet.xcf -------------------------------------------------------------------------------- /tenma/font/scene/table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/scene/table.tbl -------------------------------------------------------------------------------- /tenma/font/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/sheet.png -------------------------------------------------------------------------------- /tenma/font/sheet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/sheet.xcf -------------------------------------------------------------------------------- /tenma/font/table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/table.tbl -------------------------------------------------------------------------------- /tenma/font/tall/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/tall/index.txt -------------------------------------------------------------------------------- /tenma/font/tall/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/tall/sheet.png -------------------------------------------------------------------------------- /tenma/font/tall/sheet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/tall/sheet.xcf -------------------------------------------------------------------------------- /tenma/font/tall/table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/font/tall/table.tbl -------------------------------------------------------------------------------- /tenma/makepatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/makepatch.sh -------------------------------------------------------------------------------- /tenma/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/render.sh -------------------------------------------------------------------------------- /tenma/rsrc/grp/gamble_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/gamble_bg.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/gamble_bg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/gamble_bg.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/gamble_dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/gamble_dice.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/gamble_dice.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/gamble_dice.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/interface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/interface1.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/interface2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/interface2.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/interface3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/interface3.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/interface3.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/interface3.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/intro_cred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/intro_cred.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/intro_cred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/intro_cred.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/intro_cred.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/intro_cred.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/intro_cred_remap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/intro_cred_remap.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/intro_cred_remap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/intro_cred_remap.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/omake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/omake.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/omake.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/omake.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/gamble_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/gamble_bg.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/gamble_dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/gamble_dice.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/interface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/interface1.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/interface2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/interface2.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/interface3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/interface3.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/omake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/omake.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/plans.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/pyramid_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/pyramid_n.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/scderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/scderror.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/stonemason_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/stonemason_bonus.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/theater_credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/theater_credits.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/theater_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/theater_title.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/orig/theend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/orig/theend.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/plans.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/plans.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/plans.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/pyramid_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/pyramid_n.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/pyramid_n.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/pyramid_n.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/scderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/scderror.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/scderror.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/scderror.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/signs.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/signs.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/signs.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/signs_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/signs_gray.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/stonemason_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/stonemason_bonus.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/stonemason_bonus.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/stonemason_bonus.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_1.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_1.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_2.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_2.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_3.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_3.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_acts_remap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_acts_remap.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_credits.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_credits.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_credits.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_credits.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_end.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_end.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_end.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_end.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_title.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_title.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_title.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theater_title_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theater_title_crop.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_0.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_0.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_1.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_1.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_2.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_2.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_3.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_3.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_4.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_4.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_5.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_5.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_6.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_6.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_7.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_fade_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_fade_7.txt -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_remap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_remap.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/theend_remap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/theend_remap.xcf -------------------------------------------------------------------------------- /tenma/rsrc/grp/title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/title_logo.png -------------------------------------------------------------------------------- /tenma/rsrc/grp/title_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc/grp/title_logo.xcf -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x101.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x101.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x10D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x10D.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x11A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x11A.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x126.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x126.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x132.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x132.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x13E.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x13E.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x14B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x14B.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x157.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x157.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x163.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x163.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x16F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x16F.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x17C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x17C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x188.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x188.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x19.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x19.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x194.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x194.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1A0.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1AF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1AF.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1BB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1BB.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1C7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1C7.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1D3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1D3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1DF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1DF.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1EC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1EC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x1F8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x1F8.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x206.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x206.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x214.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x214.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x221.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x221.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x22D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x22D.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x23C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x23C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x250.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x250.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x25C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x25C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x269.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x269.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x27.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x27.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x271.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x271.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x27D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x27D.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x289.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x289.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x298.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x298.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2A0.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2B7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2B7.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2C3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2C3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2D0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2D0.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2D8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2D8.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2E7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2E7.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2F3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2F3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x2FF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x2FF.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x30C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x30C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x318.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x318.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x325.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x325.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x339.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x339.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x34.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x34.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x345.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x345.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x352.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x352.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x35C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x35C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x368.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x368.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x374.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x374.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x381.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x381.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x399.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x399.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3A5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3A5.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3B2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3B2.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3C8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3C8.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3D4.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3E1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3E1.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x3F9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x3F9.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x405.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x405.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x411.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x411.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x41D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x41D.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x42A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x42A.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x43E.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x43E.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x44A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x44A.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x457.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x457.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x46.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x46.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x473.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x473.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x47F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x47F.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x48B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x48B.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x497.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x497.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4A4.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4AC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4AC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4B8.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4C4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4C4.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4D0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4D0.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4DC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4DC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x4E9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x4E9.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x506.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x506.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x512.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x512.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x521.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x521.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x52B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x52B.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x53.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x53.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x539.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x539.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x546.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x546.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x55A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x55A.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x566.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x566.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x572.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x572.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x57E.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x57E.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x58B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x58B.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5A3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5A3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5AF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5AF.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5BB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5BB.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5C7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5C7.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5D4.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5EC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5EC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5F.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x5F8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x5F8.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x604.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x604.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x610.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x610.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x61D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x61D.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x62B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x62B.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x637.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x637.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x643.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x643.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x653.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x653.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x65F.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x65F.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x66C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x66C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x674.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x674.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x68A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x68A.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x698.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x698.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6A3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6A3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6B7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6B7.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6C.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6C9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6C9.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6DB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6DB.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x6EE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x6EE.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x702.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x702.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x710.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x710.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x728.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x728.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x739.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x739.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x74.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x74.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0x743.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0x743.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xA3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xA3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xAB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xAB.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xBC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xBC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xC.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xD0.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xDD.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xDD.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xE9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xE9.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/credits/str-0xF5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/credits/str-0xF5.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/edo_vram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/edo_vram.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/gamble_bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/gamble_bg.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/gamble_dice.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/gamble_dice.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/interface.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/interface.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/interface1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/interface1.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/interface2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/interface2.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/interface3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/interface3.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/omake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/omake.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/plans.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/plans.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/pyramid_n.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/pyramid_n.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/stonemason_bonus.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/stonemason_bonus.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/title_vram_bg_6000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/title_vram_bg_6000.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/grp/title_vram_bg_8000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/grp/title_vram_bg_8000.bin -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/edo_main.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/edo_main.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/edo_main_signs.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/edo_main_signs.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/omake.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/omake.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/plans.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/plans.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/scderror.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/scderror.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/theater_title.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/theater_title.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/theend_line.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/theend_line.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/theend_line_mod.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/theend_line_mod.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/theend_sprite.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/theend_sprite.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/title_bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/title_bg.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/title_logo.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/title_logo.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/title_logo_mod.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/title_logo_mod.pal -------------------------------------------------------------------------------- /tenma/rsrc_raw/pal/title_sprite.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/rsrc_raw/pal/title_sprite.pal -------------------------------------------------------------------------------- /tenma/script/orig/credits_inc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/credits_inc.s -------------------------------------------------------------------------------- /tenma/script/orig/script_battle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_battle.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_boss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_boss.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_bossalt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_bossalt.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_credits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_credits.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_dialogue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_dialogue.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_enemy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_enemy.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_info.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_items.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_menu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_menu.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_misc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_misc.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_saveload.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_saveload.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_shop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_shop.csv -------------------------------------------------------------------------------- /tenma/script/orig/script_subtitle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/script_subtitle.csv -------------------------------------------------------------------------------- /tenma/script/orig/spec_battle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_battle.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_boss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_boss.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_bossalt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_bossalt.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_credits.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_dialogue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_dialogue.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_enemy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_enemy.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_generic_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_generic_text.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_info.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_intro_ending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_intro_ending.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_items.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_menu.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_misc.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_saveload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_saveload.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_shop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_shop.txt -------------------------------------------------------------------------------- /tenma/script/orig/spec_subtitle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/orig/spec_subtitle.txt -------------------------------------------------------------------------------- /tenma/script/script_battle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_battle.csv -------------------------------------------------------------------------------- /tenma/script/script_battle.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_battle.ods -------------------------------------------------------------------------------- /tenma/script/script_boss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_boss.csv -------------------------------------------------------------------------------- /tenma/script/script_boss.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_boss.ods -------------------------------------------------------------------------------- /tenma/script/script_bossalt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_bossalt.csv -------------------------------------------------------------------------------- /tenma/script/script_bossalt.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_bossalt.ods -------------------------------------------------------------------------------- /tenma/script/script_credits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_credits.csv -------------------------------------------------------------------------------- /tenma/script/script_credits.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_credits.ods -------------------------------------------------------------------------------- /tenma/script/script_dialogue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_dialogue.csv -------------------------------------------------------------------------------- /tenma/script/script_dialogue.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_dialogue.ods -------------------------------------------------------------------------------- /tenma/script/script_enemy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_enemy.csv -------------------------------------------------------------------------------- /tenma/script/script_enemy.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_enemy.ods -------------------------------------------------------------------------------- /tenma/script/script_generic_text.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_generic_text.csv -------------------------------------------------------------------------------- /tenma/script/script_generic_text.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_generic_text.ods -------------------------------------------------------------------------------- /tenma/script/script_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_info.csv -------------------------------------------------------------------------------- /tenma/script/script_info.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_info.ods -------------------------------------------------------------------------------- /tenma/script/script_intro_ending.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_intro_ending.csv -------------------------------------------------------------------------------- /tenma/script/script_intro_ending.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_intro_ending.ods -------------------------------------------------------------------------------- /tenma/script/script_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_items.csv -------------------------------------------------------------------------------- /tenma/script/script_items.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_items.ods -------------------------------------------------------------------------------- /tenma/script/script_menu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_menu.csv -------------------------------------------------------------------------------- /tenma/script/script_menu.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_menu.ods -------------------------------------------------------------------------------- /tenma/script/script_misc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_misc.csv -------------------------------------------------------------------------------- /tenma/script/script_misc.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_misc.ods -------------------------------------------------------------------------------- /tenma/script/script_saveload.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_saveload.csv -------------------------------------------------------------------------------- /tenma/script/script_saveload.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_saveload.ods -------------------------------------------------------------------------------- /tenma/script/script_shop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_shop.csv -------------------------------------------------------------------------------- /tenma/script/script_shop.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_shop.ods -------------------------------------------------------------------------------- /tenma/script/script_subtitle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_subtitle.csv -------------------------------------------------------------------------------- /tenma/script/script_subtitle.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/script_subtitle.ods -------------------------------------------------------------------------------- /tenma/script/spec_battle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_battle.txt -------------------------------------------------------------------------------- /tenma/script/spec_boss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_boss.txt -------------------------------------------------------------------------------- /tenma/script/spec_bossalt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_bossalt.txt -------------------------------------------------------------------------------- /tenma/script/spec_credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_credits.txt -------------------------------------------------------------------------------- /tenma/script/spec_dialogue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_dialogue.txt -------------------------------------------------------------------------------- /tenma/script/spec_enemy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_enemy.txt -------------------------------------------------------------------------------- /tenma/script/spec_generic_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_generic_text.txt -------------------------------------------------------------------------------- /tenma/script/spec_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_info.txt -------------------------------------------------------------------------------- /tenma/script/spec_intro_ending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_intro_ending.txt -------------------------------------------------------------------------------- /tenma/script/spec_items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_items.txt -------------------------------------------------------------------------------- /tenma/script/spec_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_menu.txt -------------------------------------------------------------------------------- /tenma/script/spec_misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_misc.txt -------------------------------------------------------------------------------- /tenma/script/spec_saveload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_saveload.txt -------------------------------------------------------------------------------- /tenma/script/spec_shop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_shop.txt -------------------------------------------------------------------------------- /tenma/script/spec_subtitle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/script/spec_subtitle.txt -------------------------------------------------------------------------------- /tenma/src/adpcmdmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/adpcmdmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/bigspriteundmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/bigspriteundmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/colorconv_pcergb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/colorconv_pcergb.cpp -------------------------------------------------------------------------------- /tenma/src/colorconv_rgbpce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/colorconv_rgbpce.cpp -------------------------------------------------------------------------------- /tenma/src/datpad_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/datpad_double.cpp -------------------------------------------------------------------------------- /tenma/src/datpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/datpatch.cpp -------------------------------------------------------------------------------- /tenma/src/datsnip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/datsnip.cpp -------------------------------------------------------------------------------- /tenma/src/decolorize_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/decolorize_pce.cpp -------------------------------------------------------------------------------- /tenma/src/dism_quoter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/dism_quoter.cpp -------------------------------------------------------------------------------- /tenma/src/dismstripper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/dismstripper.cpp -------------------------------------------------------------------------------- /tenma/src/fontbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/fontbuild.cpp -------------------------------------------------------------------------------- /tenma/src/fontrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/fontrender.cpp -------------------------------------------------------------------------------- /tenma/src/grpdmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/grpdmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/grpundmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/grpundmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/grpundmp_pce_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/grpundmp_pce_new.cpp -------------------------------------------------------------------------------- /tenma/src/grpunmap_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/grpunmap_pce.cpp -------------------------------------------------------------------------------- /tenma/src/printwordtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/printwordtable.cpp -------------------------------------------------------------------------------- /tenma/src/relsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/relsearch.cpp -------------------------------------------------------------------------------- /tenma/src/sjis_srch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/sjis_srch.cpp -------------------------------------------------------------------------------- /tenma/src/spritebuild_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/spritebuild_pce.cpp -------------------------------------------------------------------------------- /tenma/src/spritebuild_pce_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/spritebuild_pce_old.cpp -------------------------------------------------------------------------------- /tenma/src/spritedmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/spritedmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/spritelayout_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/spritelayout_pce.cpp -------------------------------------------------------------------------------- /tenma/src/spriteundmp_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/spriteundmp_pce.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_mapdecmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_mapdecmp.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_maprender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_maprender.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_maprender_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_maprender_generic.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_mapscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_mapscan.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_patch.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_prep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_prep.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_scriptbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_scriptbuild.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_scriptcsvconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_scriptcsvconv.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_scriptgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_scriptgen.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_scriptimport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_scriptimport.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_scriptwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_scriptwrap.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_signgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_signgen.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_signscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_signscan.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_spriteprep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_spriteprep.cpp -------------------------------------------------------------------------------- /tenma/src/tenma_string_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tenma_string_scan.cpp -------------------------------------------------------------------------------- /tenma/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/test.cpp -------------------------------------------------------------------------------- /tenma/src/textscr_commenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/textscr_commenter.cpp -------------------------------------------------------------------------------- /tenma/src/tilemapper_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/tilemapper_pce.cpp -------------------------------------------------------------------------------- /tenma/src/xlsxfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/src/xlsxfix.cpp -------------------------------------------------------------------------------- /tenma/table/ascii.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/ascii.tbl -------------------------------------------------------------------------------- /tenma/table/sjis.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/sjis.tbl -------------------------------------------------------------------------------- /tenma/table/sjis_utf8.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/sjis_utf8.tbl -------------------------------------------------------------------------------- /tenma/table/sjis_utf8_tenma_credits.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/sjis_utf8_tenma_credits.tbl -------------------------------------------------------------------------------- /tenma/table/sjis_utf8_tenma_full.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/sjis_utf8_tenma_full.tbl -------------------------------------------------------------------------------- /tenma/table/sjis_utf8_tenma_std.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/sjis_utf8_tenma_std.tbl -------------------------------------------------------------------------------- /tenma/table/tenma_menu_en.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/tenma_menu_en.tbl -------------------------------------------------------------------------------- /tenma/table/tenma_scenes_en.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/tenma_scenes_en.tbl -------------------------------------------------------------------------------- /tenma/table/tenma_std_en.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/table/tenma_std_en.tbl -------------------------------------------------------------------------------- /tenma/tenma.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/tenma.dsc -------------------------------------------------------------------------------- /tenma/tenma_iso_build.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/tenma_iso_build.cue -------------------------------------------------------------------------------- /tenma/tenma_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/tenma_notes -------------------------------------------------------------------------------- /tenma/tilemappers/scderror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/tilemappers/scderror.txt -------------------------------------------------------------------------------- /tenma/tilemappers/theater_title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/tilemappers/theater_title.txt -------------------------------------------------------------------------------- /tenma/wla-dx/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/CHANGELOG -------------------------------------------------------------------------------- /tenma/wla-dx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/CMakeLists.txt -------------------------------------------------------------------------------- /tenma/wla-dx/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/CONTRIBUTING.md -------------------------------------------------------------------------------- /tenma/wla-dx/FILE_FORMATS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/FILE_FORMATS -------------------------------------------------------------------------------- /tenma/wla-dx/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/INSTALL -------------------------------------------------------------------------------- /tenma/wla-dx/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/INSTALL.md -------------------------------------------------------------------------------- /tenma/wla-dx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/LICENSE -------------------------------------------------------------------------------- /tenma/wla-dx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/README.md -------------------------------------------------------------------------------- /tenma/wla-dx/binaries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/binaries/.gitignore -------------------------------------------------------------------------------- /tenma/wla-dx/byte_tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/byte_tester/CMakeLists.txt -------------------------------------------------------------------------------- /tenma/wla-dx/byte_tester/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/byte_tester/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/crc32.c -------------------------------------------------------------------------------- /tenma/wla-dx/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/crc32.h -------------------------------------------------------------------------------- /tenma/wla-dx/decode_6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_6502.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_6510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_6510.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_65816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_65816.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_65c02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_65c02.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_6800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_6800.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_6801.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_6801.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_6809.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_6809.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_8008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_8008.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_8080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_8080.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_gb.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_huc6280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_huc6280.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_spc700.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_spc700.c -------------------------------------------------------------------------------- /tenma/wla-dx/decode_z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/decode_z80.c -------------------------------------------------------------------------------- /tenma/wla-dx/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/CMakeLists.txt -------------------------------------------------------------------------------- /tenma/wla-dx/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/README.md -------------------------------------------------------------------------------- /tenma/wla-dx/doc/archoverview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/archoverview.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/arithmetics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/arithmetics.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/asmdiv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/asmdiv.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/asmsyntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/asmsyntax.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/bintodb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/bintodb.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/bugs.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/codetoknow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/codetoknow.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/compiling.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/conf.py -------------------------------------------------------------------------------- /tenma/wla-dx/doc/errormsg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/errormsg.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/extraflags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/extraflags.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/files.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/gb-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/gb-support.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/goodtoknow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/goodtoknow.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/introduction.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/legal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/legal.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/linking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/linking.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/man/wla-cpu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/man/wla-cpu.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/man/wlab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/man/wlab.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/man/wlalink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/man/wlalink.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/sphinx/globalindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/sphinx/globalindex.py -------------------------------------------------------------------------------- /tenma/wla-dx/doc/sphinx/singletext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/sphinx/singletext.py -------------------------------------------------------------------------------- /tenma/wla-dx/doc/symbols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/symbols.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/tempfiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/tempfiles.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/theme/layout.html -------------------------------------------------------------------------------- /tenma/wla-dx/doc/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = haiku 3 | 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/doc/wla-dx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/wla-dx.rst -------------------------------------------------------------------------------- /tenma/wla-dx/doc/wlaflags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/doc/wlaflags.rst -------------------------------------------------------------------------------- /tenma/wla-dx/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/examples/.gitignore -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6502/compiler_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6502/struct_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6510/c64_prg_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6510/c64_prg_test/testsfile: -------------------------------------------------------------------------------- 1 | linked.prg 2 | TEST-01 -a 0 START 01 08 END 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6510/linker_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | setup.o 5 | 6 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6510/operand_hint_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/6510/zero_page/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/base_test_1/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/base_test_2/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/base_test_3/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/base_test_4/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_12mbit_lorom/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_12mbit_lorom/testsfile: -------------------------------------------------------------------------------- 1 | result.rom 2 | TEST-CK CK START 39 FC C6 03 END 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_24mbit_lorom/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_24mbit_lorom/testsfile: -------------------------------------------------------------------------------- 1 | result.rom 2 | TEST-CK CK START 39 FC C6 03 END 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_8mbit_hirom/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_8mbit_hirom/testsfile: -------------------------------------------------------------------------------- 1 | result.rom 2 | TEST-CK CK START 3C FC C3 03 END 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_8mbit_lorom/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/checksum_8mbit_lorom/testsfile: -------------------------------------------------------------------------------- 1 | result.rom 2 | TEST-CK CK START 36 FC C9 03 END 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/name_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/nocashsns_symbol_file/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/opcode_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | [definitions] 4 | tableX 0 5 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65816/operand_hint_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | [definitions] 4 | tableX 0 5 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/65c02/linker_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | setup.o 5 | 6 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/8008/rst_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | [definitions] 4 | ONE 1 5 | TWO 2 6 | THREE 3 7 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/8080/rst_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | [definitions] 4 | ONE 1 5 | TWO 2 6 | THREE 3 7 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/examples/README -------------------------------------------------------------------------------- /tenma/wla-dx/examples/gb-z80/appendto_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | 4 | [definitions] 5 | DIVME 524288 6 | HERE 4096 7 | 8 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/gb-z80/background_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/gb-z80/namespace_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | setup.o 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/gb-z80/sintest/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | 4 | [definitions] 5 | DIVME 524288 6 | HERE 4096 7 | 8 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/gb-z80/union_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/huc6280/linker_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/huc6280/ram_sections/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/spc-700/linker_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | setup.o 5 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/caddr_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | sms.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/linker_header_test/linkfile: -------------------------------------------------------------------------------- 1 | 2 | [objects] 3 | main.o 4 | setup.o 5 | 6 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/linker_test_1/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | setup.o 4 | 5 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/linker_test_2/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | setup.o 4 | 5 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/rept_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | 4 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/rst_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | sms.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/sdsc_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | sms.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/sms_test/data1/data.txt: -------------------------------------------------------------------------------- 1 | DATA1 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/sms_test/data2/data.txt: -------------------------------------------------------------------------------- 1 | DATA2 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/sms_test/data3/data.txt: -------------------------------------------------------------------------------- 1 | DATA3 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/sms_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | sms.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/smsheader_test/data1/data.txt: -------------------------------------------------------------------------------- 1 | DATA1 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/smsheader_test/data2/data.txt: -------------------------------------------------------------------------------- 1 | DATA2 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/smsheader_test/data3/data.txt: -------------------------------------------------------------------------------- 1 | DATA3 2 | -------------------------------------------------------------------------------- /tenma/wla-dx/examples/z80/smsheader_test/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | sms.o 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/hashmap.c -------------------------------------------------------------------------------- /tenma/wla-dx/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/hashmap.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/README -------------------------------------------------------------------------------- /tenma/wla-dx/historical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/README.md -------------------------------------------------------------------------------- /tenma/wla-dx/historical/SCOPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/SCOPTIONS -------------------------------------------------------------------------------- /tenma/wla-dx/historical/amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/amiga -------------------------------------------------------------------------------- /tenma/wla-dx/historical/amigaos4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/amigaos4 -------------------------------------------------------------------------------- /tenma/wla-dx/historical/dasm_opcodes/main.h: -------------------------------------------------------------------------------- 1 | 2 | int get_mnemonic_status(int i); 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/LICENSE -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/SCOPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/SCOPTIONS -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/makefile -------------------------------------------------------------------------------- /tenma/wla-dx/historical/icopy/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/icopy/smakefile -------------------------------------------------------------------------------- /tenma/wla-dx/historical/msdos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/msdos.bat -------------------------------------------------------------------------------- /tenma/wla-dx/historical/txt/z80_dup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/txt/z80_dup.txt -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlab/SCOPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlab/SCOPTIONS -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlab/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlab/smakefile -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/.gitignore -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/LICENSE -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/SCOPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/SCOPTIONS -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad/smakefile -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad_new/dasm_analyzer.h: -------------------------------------------------------------------------------- 1 | 2 | int dasm_analyzer(void); 3 | -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad_new/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad_new/data.c -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad_new/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad_new/data.h -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad_new/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad_new/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/historical/wlad_new/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/historical/wlad_new/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/include_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/include_file.c -------------------------------------------------------------------------------- /tenma/wla-dx/include_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/include_file.h -------------------------------------------------------------------------------- /tenma/wla-dx/listfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/listfile.c -------------------------------------------------------------------------------- /tenma/wla-dx/listfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/listfile.h -------------------------------------------------------------------------------- /tenma/wla-dx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/memorymaps/gameboy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/memorymaps/gameboy.i -------------------------------------------------------------------------------- /tenma/wla-dx/memorymaps/smsgg1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/memorymaps/smsgg1.i -------------------------------------------------------------------------------- /tenma/wla-dx/memorymaps/smsgg2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/memorymaps/smsgg2.i -------------------------------------------------------------------------------- /tenma/wla-dx/memorymaps/snes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/memorymaps/snes.i -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_6502.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_6510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_6510.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_65816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_65816.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_65c02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_65c02.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_6800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_6800.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_6801.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_6801.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_6809.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_6809.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_8008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_8008.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_8080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_8080.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_gb.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_huc6280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_huc6280.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_spc700.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_spc700.c -------------------------------------------------------------------------------- /tenma/wla-dx/opcodes_z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/opcodes_z80.c -------------------------------------------------------------------------------- /tenma/wla-dx/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/parse.c -------------------------------------------------------------------------------- /tenma/wla-dx/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/parse.h -------------------------------------------------------------------------------- /tenma/wla-dx/pass_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_1.c -------------------------------------------------------------------------------- /tenma/wla-dx/pass_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_1.h -------------------------------------------------------------------------------- /tenma/wla-dx/pass_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_2.c -------------------------------------------------------------------------------- /tenma/wla-dx/pass_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_2.h -------------------------------------------------------------------------------- /tenma/wla-dx/pass_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_3.c -------------------------------------------------------------------------------- /tenma/wla-dx/pass_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_3.h -------------------------------------------------------------------------------- /tenma/wla-dx/pass_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_4.c -------------------------------------------------------------------------------- /tenma/wla-dx/pass_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/pass_4.h -------------------------------------------------------------------------------- /tenma/wla-dx/print_opcodes/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/print_opcodes/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/print_opcodes/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/print_opcodes/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/print_opcodes/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/print_opcodes/makefile -------------------------------------------------------------------------------- /tenma/wla-dx/run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/run_unit_tests.sh -------------------------------------------------------------------------------- /tenma/wla-dx/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/shared.h -------------------------------------------------------------------------------- /tenma/wla-dx/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/stack.c -------------------------------------------------------------------------------- /tenma/wla-dx/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/stack.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlab/.gitignore -------------------------------------------------------------------------------- /tenma/wla-dx/wlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlab/CMakeLists.txt -------------------------------------------------------------------------------- /tenma/wla-dx/wlab/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlab/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlab/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlab/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlab/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlab/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/.gitignore -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/CMakeLists.txt -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/analyze.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/analyze.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/check.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/check.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/compute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/compute.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/compute.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/defines.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/discard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/discard.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/discard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/discard.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/files.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/files.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/listfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/listfile.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/listfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/listfile.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/main.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/main.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/memory.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/memory.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/parse.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/parse.h -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/write.c -------------------------------------------------------------------------------- /tenma/wla-dx/wlalink/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suppertails66/tenmatools/HEAD/tenma/wla-dx/wlalink/write.h --------------------------------------------------------------------------------