This is a port targeting the Foenix Retro Systems F256 platform. Code is being converted to the 64tass assembler.
Dungeoneer is a simple game developed using Atari 6502 assembler MADS.
- MADS assembler.
- PyPNG used for python import imports.
- Tiled map editor.
- GIMP used for image editing.
- Makefile used for building/running Dungeoneer.
- Atari800 emulator.
- Altirra emulator.
To build the executable (xex) program, issue the following make command.
make build
To run the executable in an emulator, feel free to use one of the supplied run targets. The default emulator is atari800.
The following will run the executable in the atari800 emulator.
make run
The following will run the executable in the Altirra emulator using the altirra shell script under wine.
make runalt
-
Based on the original 8bit MADS YouTube tutorial series by Ed Salisbury Let's Write a Roguelike Game in 6502 Assembly on the Atari 8-Bit!
-
Map editing handled by Tiled. Python scripts under
/art/tiled
handle the import and transformation from csv to assembly source code. -
Artwork created using GIMP. Python scripts under
/art
handle the import and transformation from PNG to assembly source code. -
Memory mapping reference used Atari Memory Map.
-
Player Missile Graphics (PMG) reference used PMG Memory Map.
-
NTSC Color Palette reference used Atari Color Palette.
-
Code assembled and written for the MADS Atari Assembler.