DrugWars (DopeWars) clone for the Arduboy.
Go to file
Rudis Muiznieks a4d71b9e1a
starting on game state management
2022-06-15 18:36:12 -05:00
.gitignore real initial commit 2022-06-15 12:47:42 -05:00
DEV_NOTES.txt starting on game state management 2022-06-15 18:36:12 -05:00
LICENSE added license 2022-06-15 12:51:24 -05:00
Makefile starting on game state management 2022-06-15 18:36:12 -05:00
README.md updated readme 2022-06-15 13:13:52 -05:00
slangin.ino starting on game state management 2022-06-15 18:36:12 -05:00

README.md

Slangin'

DrugWars (DopeWars) clone for the Arduboy.

Reference implementation.

Building

Run make to build slangin.hex. You need arduino-cli on your path already set up to compile for the Arduboy.

Running

Run make run to build and run the game. You need the sim-arduboy emulator on your path.

To run on an actual device, use arduino-cli to upload slangin.hex after building. For example:

make && \
arduino-cli upload -b arduino:avr:leonardo -p /dev/ttyACM1 slangin.hex

Your port path (-p argument) may differ depending on your system.