├── .gitignore ├── Makefile ├── README.md ├── constants.asm ├── images └── newmap.jpg ├── joystick.asm ├── lines.asm ├── main.asm ├── map ├── map.gif ├── map.psd └── map.py ├── monsters.asm ├── music.asm ├── portals.asm ├── sound.asm └── treasures.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/README.md -------------------------------------------------------------------------------- /constants.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/constants.asm -------------------------------------------------------------------------------- /images/newmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/images/newmap.jpg -------------------------------------------------------------------------------- /joystick.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/joystick.asm -------------------------------------------------------------------------------- /lines.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/lines.asm -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/main.asm -------------------------------------------------------------------------------- /map/map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/map/map.gif -------------------------------------------------------------------------------- /map/map.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/map/map.psd -------------------------------------------------------------------------------- /map/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/map/map.py -------------------------------------------------------------------------------- /monsters.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/monsters.asm -------------------------------------------------------------------------------- /music.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/music.asm -------------------------------------------------------------------------------- /portals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/portals.asm -------------------------------------------------------------------------------- /sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/sound.asm -------------------------------------------------------------------------------- /treasures.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yggdrasilradio/templeofrom/HEAD/treasures.asm --------------------------------------------------------------------------------