├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── doc ├── addresses.txt ├── covetous.txt ├── disk-comparison.ods ├── disks.txt ├── disks2.txt ├── dng.precom.txt ├── dungeonroom.txt ├── enter.play.txt ├── formats.txt ├── intro.view.txt ├── m.txt ├── main.combat.dungeon.txt ├── main.combat.txt ├── main.dng.txt ├── main.out.txt ├── main.subs.txt ├── main.twn.txt ├── memory.txt ├── meow.txt ├── q.txt ├── qs.txt ├── scratch.txt ├── startup.txt ├── subs.128.txt ├── temp.subs.info ├── temp.subs.txt ├── todo.txt ├── transfer.txt ├── u5_c64.txt ├── u5siz.o.txt ├── v.txt ├── xyzzy.info └── xyzzy.txt ├── patches ├── backbit │ └── meow.patch ├── d81 │ ├── c.prg.1.patch │ ├── create.prg.1.patch │ ├── create.prg.2.patch │ ├── end.prg.1.patch │ ├── enter.play.prg.1.patch │ ├── enter.play.prg.2.patch │ ├── enter.play.prg.3.patch │ ├── enter.play.prg.4.patch │ ├── main.dng.prg.1.patch │ ├── main.out.prg.1.patch │ ├── main.out.prg.2.patch │ ├── main.out.prg.3.patch │ ├── main.out.prg.4.patch │ ├── main.out.prg.5.patch │ ├── main.out.prg.6.patch │ ├── main.twn.prg.1.patch │ ├── main.twn.prg.2.patch │ ├── main.twn.prg.3.patch │ ├── oc.prg.1.patch │ ├── qs.prg.1.patch │ ├── startup.prg.1.patch │ ├── startup.prg.2.patch │ ├── startup.prg.3.patch │ ├── story.prg.1.patch │ ├── story.prg.2.patch │ ├── story.prg.3.patch │ ├── story.prg.4.patch │ ├── temp.subs.prg.1.patch │ ├── temp.subs.prg.2.patch │ ├── temp.subs.prg.3.patch │ ├── temp.subs.prg.4.patch │ ├── temp.subs.prg.5.patch │ ├── temp.subs.prg.6.patch │ ├── temp.subs.prg.7.patch │ ├── temp.subs.prg.8.patch │ ├── transfer.prg.1.patch │ ├── transfer.prg.2.patch │ ├── transfer.prg.3.patch │ ├── transfer.prg.4.patch │ ├── transfer.prg.5.patch │ ├── transfer.prg.6.patch │ ├── transfer.prg.7.patch │ └── transfer.prg.8.patch ├── ef │ ├── enter.play.prg.1.patch │ ├── main.combat.prg.1.patch │ ├── main.combat.prg.2.patch │ ├── main.subs.prg.1.patch │ ├── music_rom.1.patch │ ├── music_rom.2.patch │ ├── music_rom.3.patch │ ├── temp.subs.prg.1.patch │ ├── temp.subs.prg.10.patch │ ├── temp.subs.prg.11.patch │ ├── temp.subs.prg.12.patch │ ├── temp.subs.prg.2.patch │ ├── temp.subs.prg.3.patch │ ├── temp.subs.prg.4.patch │ ├── temp.subs.prg.5.patch │ ├── temp.subs.prg.6.patch │ ├── temp.subs.prg.7.patch │ ├── temp.subs.prg.8.patch │ ├── temp.subs.prg.9.patch │ ├── transfer.prg.1.patch │ ├── transfer.prg.2.patch │ ├── transfer.prg.3.patch │ ├── transfer.prg.4.patch │ ├── transfer.prg.5.patch │ ├── transfer.prg.6.patch │ └── transfer.prg.7.patch ├── main.out.britannia.1.patch ├── main.out.britannia.2.patch ├── main.out.britannia.3.patch ├── main.out.underworld.1.patch ├── main.out.underworld.2.patch ├── main.out.underworld.3.patch ├── main.twn.1.patch ├── main.twn.2.patch ├── main.twn.3.patch ├── startup.prg.1.patch └── startup.prg.2.patch ├── src ├── backbit │ ├── exclude.cfg │ ├── exodecrunch.cfg │ ├── io-code.s │ ├── io-replacement.cfg │ ├── io.i │ ├── loader.cfg │ └── loader.s ├── common │ ├── editor.c │ ├── exodecrunch.s │ ├── karma.s │ ├── karma_britannia.cfg │ ├── karma_britannia.s │ ├── karma_twn.cfg │ ├── karma_twn.s │ ├── karma_underworld.cfg │ ├── karma_underworld.s │ └── utils.s ├── d81 │ ├── editor.cfg │ ├── editor128.cfg │ ├── exclude.cfg │ ├── exodecrunch.cfg │ ├── io-code.s │ ├── io-replacement.cfg │ ├── io.i │ ├── loader.cfg │ ├── loader.s │ ├── save_util.c │ ├── save_util.h │ ├── savegame.c │ ├── savegame.cfg │ ├── savegame128.cfg │ ├── transfer-load.cfg │ └── transfer-load.s ├── disks.cfg ├── ef │ ├── block.map │ ├── crt.map │ ├── eapi-am29f040.prg │ ├── easyflash.i │ ├── efs-config.cfg │ ├── efs-config.s │ ├── exclude.cfg │ ├── init.cfg │ ├── init.s │ ├── io-code.s │ ├── io-replacement.cfg │ ├── io.i │ ├── lib-efs.prg │ ├── loader.cfg │ ├── loader.s │ ├── menu.c │ ├── menu.cfg │ ├── menu_backup.c │ ├── menu_include.h │ ├── menu_savegame.s │ ├── menu_util.c │ ├── music-base.s │ ├── music-disassemble.info │ ├── music-export.i │ ├── music-playsound-template.s │ ├── music.cfg │ ├── music.i │ ├── startup.s │ ├── subs128-disassemble.info │ ├── transfer-load.cfg │ └── transfer-load.s └── png │ ├── dungeon.yaml │ ├── tileset.yaml │ └── transform.yaml ├── tools ├── create_maps.sh ├── crunch.py ├── dungeonbuilder.py ├── extract.py ├── font2png.py ├── gembuilder.py ├── getsymbol.py ├── mapbuilder.py ├── mkbin.py ├── mkblocks.py ├── mkd81.py ├── mkefs.py ├── roombuilder.py ├── showfile.py ├── tilesbuilder.py └── u5patch.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/README.md -------------------------------------------------------------------------------- /doc/addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/addresses.txt -------------------------------------------------------------------------------- /doc/covetous.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/covetous.txt -------------------------------------------------------------------------------- /doc/disk-comparison.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/disk-comparison.ods -------------------------------------------------------------------------------- /doc/disks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/disks.txt -------------------------------------------------------------------------------- /doc/disks2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/disks2.txt -------------------------------------------------------------------------------- /doc/dng.precom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/dng.precom.txt -------------------------------------------------------------------------------- /doc/dungeonroom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/dungeonroom.txt -------------------------------------------------------------------------------- /doc/enter.play.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/enter.play.txt -------------------------------------------------------------------------------- /doc/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/formats.txt -------------------------------------------------------------------------------- /doc/intro.view.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/intro.view.txt -------------------------------------------------------------------------------- /doc/m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/m.txt -------------------------------------------------------------------------------- /doc/main.combat.dungeon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.combat.dungeon.txt -------------------------------------------------------------------------------- /doc/main.combat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.combat.txt -------------------------------------------------------------------------------- /doc/main.dng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.dng.txt -------------------------------------------------------------------------------- /doc/main.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.out.txt -------------------------------------------------------------------------------- /doc/main.subs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.subs.txt -------------------------------------------------------------------------------- /doc/main.twn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/main.twn.txt -------------------------------------------------------------------------------- /doc/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/memory.txt -------------------------------------------------------------------------------- /doc/meow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/meow.txt -------------------------------------------------------------------------------- /doc/q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/q.txt -------------------------------------------------------------------------------- /doc/qs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/qs.txt -------------------------------------------------------------------------------- /doc/scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/scratch.txt -------------------------------------------------------------------------------- /doc/startup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/startup.txt -------------------------------------------------------------------------------- /doc/subs.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/subs.128.txt -------------------------------------------------------------------------------- /doc/temp.subs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/temp.subs.info -------------------------------------------------------------------------------- /doc/temp.subs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/temp.subs.txt -------------------------------------------------------------------------------- /doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/todo.txt -------------------------------------------------------------------------------- /doc/transfer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/transfer.txt -------------------------------------------------------------------------------- /doc/u5_c64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/u5_c64.txt -------------------------------------------------------------------------------- /doc/u5siz.o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/u5siz.o.txt -------------------------------------------------------------------------------- /doc/v.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/v.txt -------------------------------------------------------------------------------- /doc/xyzzy.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/xyzzy.info -------------------------------------------------------------------------------- /doc/xyzzy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/doc/xyzzy.txt -------------------------------------------------------------------------------- /patches/backbit/meow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/backbit/meow.patch -------------------------------------------------------------------------------- /patches/d81/c.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/c.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/create.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/create.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/create.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/create.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/end.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/end.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/enter.play.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/enter.play.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/enter.play.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/enter.play.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/enter.play.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/enter.play.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/enter.play.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/enter.play.prg.4.patch -------------------------------------------------------------------------------- /patches/d81/main.dng.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.dng.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.4.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.5.patch -------------------------------------------------------------------------------- /patches/d81/main.out.prg.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.out.prg.6.patch -------------------------------------------------------------------------------- /patches/d81/main.twn.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.twn.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/main.twn.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.twn.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/main.twn.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/main.twn.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/oc.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/oc.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/qs.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/qs.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/startup.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/startup.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/startup.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/startup.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/startup.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/startup.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/story.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/story.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/story.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/story.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/story.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/story.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/story.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/story.prg.4.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.4.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.5.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.6.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.7.patch -------------------------------------------------------------------------------- /patches/d81/temp.subs.prg.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/temp.subs.prg.8.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.1.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.2.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.3.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.4.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.5.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.6.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.7.patch -------------------------------------------------------------------------------- /patches/d81/transfer.prg.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/d81/transfer.prg.8.patch -------------------------------------------------------------------------------- /patches/ef/enter.play.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/enter.play.prg.1.patch -------------------------------------------------------------------------------- /patches/ef/main.combat.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/main.combat.prg.1.patch -------------------------------------------------------------------------------- /patches/ef/main.combat.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/main.combat.prg.2.patch -------------------------------------------------------------------------------- /patches/ef/main.subs.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/main.subs.prg.1.patch -------------------------------------------------------------------------------- /patches/ef/music_rom.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/music_rom.1.patch -------------------------------------------------------------------------------- /patches/ef/music_rom.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/music_rom.2.patch -------------------------------------------------------------------------------- /patches/ef/music_rom.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/music_rom.3.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.1.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.10.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.11.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.12.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.2.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.3.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.4.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.5.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.6.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.7.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.8.patch -------------------------------------------------------------------------------- /patches/ef/temp.subs.prg.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/temp.subs.prg.9.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.1.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.2.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.3.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.4.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.5.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.6.patch -------------------------------------------------------------------------------- /patches/ef/transfer.prg.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/ef/transfer.prg.7.patch -------------------------------------------------------------------------------- /patches/main.out.britannia.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.britannia.1.patch -------------------------------------------------------------------------------- /patches/main.out.britannia.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.britannia.2.patch -------------------------------------------------------------------------------- /patches/main.out.britannia.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.britannia.3.patch -------------------------------------------------------------------------------- /patches/main.out.underworld.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.underworld.1.patch -------------------------------------------------------------------------------- /patches/main.out.underworld.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.underworld.2.patch -------------------------------------------------------------------------------- /patches/main.out.underworld.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.out.underworld.3.patch -------------------------------------------------------------------------------- /patches/main.twn.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.twn.1.patch -------------------------------------------------------------------------------- /patches/main.twn.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.twn.2.patch -------------------------------------------------------------------------------- /patches/main.twn.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/main.twn.3.patch -------------------------------------------------------------------------------- /patches/startup.prg.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/startup.prg.1.patch -------------------------------------------------------------------------------- /patches/startup.prg.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/patches/startup.prg.2.patch -------------------------------------------------------------------------------- /src/backbit/exclude.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/exclude.cfg -------------------------------------------------------------------------------- /src/backbit/exodecrunch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/exodecrunch.cfg -------------------------------------------------------------------------------- /src/backbit/io-code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/io-code.s -------------------------------------------------------------------------------- /src/backbit/io-replacement.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/io-replacement.cfg -------------------------------------------------------------------------------- /src/backbit/io.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/io.i -------------------------------------------------------------------------------- /src/backbit/loader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/loader.cfg -------------------------------------------------------------------------------- /src/backbit/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/backbit/loader.s -------------------------------------------------------------------------------- /src/common/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/editor.c -------------------------------------------------------------------------------- /src/common/exodecrunch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/exodecrunch.s -------------------------------------------------------------------------------- /src/common/karma.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma.s -------------------------------------------------------------------------------- /src/common/karma_britannia.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_britannia.cfg -------------------------------------------------------------------------------- /src/common/karma_britannia.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_britannia.s -------------------------------------------------------------------------------- /src/common/karma_twn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_twn.cfg -------------------------------------------------------------------------------- /src/common/karma_twn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_twn.s -------------------------------------------------------------------------------- /src/common/karma_underworld.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_underworld.cfg -------------------------------------------------------------------------------- /src/common/karma_underworld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/karma_underworld.s -------------------------------------------------------------------------------- /src/common/utils.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/common/utils.s -------------------------------------------------------------------------------- /src/d81/editor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/editor.cfg -------------------------------------------------------------------------------- /src/d81/editor128.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/editor128.cfg -------------------------------------------------------------------------------- /src/d81/exclude.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/exclude.cfg -------------------------------------------------------------------------------- /src/d81/exodecrunch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/exodecrunch.cfg -------------------------------------------------------------------------------- /src/d81/io-code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/io-code.s -------------------------------------------------------------------------------- /src/d81/io-replacement.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/io-replacement.cfg -------------------------------------------------------------------------------- /src/d81/io.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/io.i -------------------------------------------------------------------------------- /src/d81/loader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/loader.cfg -------------------------------------------------------------------------------- /src/d81/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/loader.s -------------------------------------------------------------------------------- /src/d81/save_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/save_util.c -------------------------------------------------------------------------------- /src/d81/save_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/save_util.h -------------------------------------------------------------------------------- /src/d81/savegame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/savegame.c -------------------------------------------------------------------------------- /src/d81/savegame.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/savegame.cfg -------------------------------------------------------------------------------- /src/d81/savegame128.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/savegame128.cfg -------------------------------------------------------------------------------- /src/d81/transfer-load.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/transfer-load.cfg -------------------------------------------------------------------------------- /src/d81/transfer-load.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/d81/transfer-load.s -------------------------------------------------------------------------------- /src/disks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/disks.cfg -------------------------------------------------------------------------------- /src/ef/block.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/block.map -------------------------------------------------------------------------------- /src/ef/crt.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/crt.map -------------------------------------------------------------------------------- /src/ef/eapi-am29f040.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/eapi-am29f040.prg -------------------------------------------------------------------------------- /src/ef/easyflash.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/easyflash.i -------------------------------------------------------------------------------- /src/ef/efs-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/efs-config.cfg -------------------------------------------------------------------------------- /src/ef/efs-config.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/efs-config.s -------------------------------------------------------------------------------- /src/ef/exclude.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/exclude.cfg -------------------------------------------------------------------------------- /src/ef/init.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/init.cfg -------------------------------------------------------------------------------- /src/ef/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/init.s -------------------------------------------------------------------------------- /src/ef/io-code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/io-code.s -------------------------------------------------------------------------------- /src/ef/io-replacement.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/io-replacement.cfg -------------------------------------------------------------------------------- /src/ef/io.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/io.i -------------------------------------------------------------------------------- /src/ef/lib-efs.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/lib-efs.prg -------------------------------------------------------------------------------- /src/ef/loader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/loader.cfg -------------------------------------------------------------------------------- /src/ef/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/loader.s -------------------------------------------------------------------------------- /src/ef/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu.c -------------------------------------------------------------------------------- /src/ef/menu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu.cfg -------------------------------------------------------------------------------- /src/ef/menu_backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu_backup.c -------------------------------------------------------------------------------- /src/ef/menu_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu_include.h -------------------------------------------------------------------------------- /src/ef/menu_savegame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu_savegame.s -------------------------------------------------------------------------------- /src/ef/menu_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/menu_util.c -------------------------------------------------------------------------------- /src/ef/music-base.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music-base.s -------------------------------------------------------------------------------- /src/ef/music-disassemble.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music-disassemble.info -------------------------------------------------------------------------------- /src/ef/music-export.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music-export.i -------------------------------------------------------------------------------- /src/ef/music-playsound-template.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music-playsound-template.s -------------------------------------------------------------------------------- /src/ef/music.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music.cfg -------------------------------------------------------------------------------- /src/ef/music.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/music.i -------------------------------------------------------------------------------- /src/ef/startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/startup.s -------------------------------------------------------------------------------- /src/ef/subs128-disassemble.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/subs128-disassemble.info -------------------------------------------------------------------------------- /src/ef/transfer-load.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/transfer-load.cfg -------------------------------------------------------------------------------- /src/ef/transfer-load.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/ef/transfer-load.s -------------------------------------------------------------------------------- /src/png/dungeon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/png/dungeon.yaml -------------------------------------------------------------------------------- /src/png/tileset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/png/tileset.yaml -------------------------------------------------------------------------------- /src/png/transform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/src/png/transform.yaml -------------------------------------------------------------------------------- /tools/create_maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/create_maps.sh -------------------------------------------------------------------------------- /tools/crunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/crunch.py -------------------------------------------------------------------------------- /tools/dungeonbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/dungeonbuilder.py -------------------------------------------------------------------------------- /tools/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/extract.py -------------------------------------------------------------------------------- /tools/font2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/font2png.py -------------------------------------------------------------------------------- /tools/gembuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/gembuilder.py -------------------------------------------------------------------------------- /tools/getsymbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/getsymbol.py -------------------------------------------------------------------------------- /tools/mapbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/mapbuilder.py -------------------------------------------------------------------------------- /tools/mkbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/mkbin.py -------------------------------------------------------------------------------- /tools/mkblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/mkblocks.py -------------------------------------------------------------------------------- /tools/mkd81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/mkd81.py -------------------------------------------------------------------------------- /tools/mkefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/mkefs.py -------------------------------------------------------------------------------- /tools/roombuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/roombuilder.py -------------------------------------------------------------------------------- /tools/showfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/showfile.py -------------------------------------------------------------------------------- /tools/tilesbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/tilesbuilder.py -------------------------------------------------------------------------------- /tools/u5patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drunella/u5remastered/HEAD/tools/u5patch.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1,4,8 --------------------------------------------------------------------------------