Ported to new device masks
Removed build script, will use makefile instead
Added instructions to build on device
The Playdate is a monochromatic handheld console, programmable in C. This repo can be used as an example implementation of the Varvara specs.
arm-none-eabi-gcc and clang from your distro's package repositories.sudo apt-get install gcc-arm-none-eabi clang # Debian
sudo pacman -Sy gcc-arm-none-eabi arm-none-eabi-newlib clang #Arch
Set PLAYDATE_SDK in your environment to the location of the PlaydateSDK directory, then run the Makefile:
export PLAYDATE_SDK_PATH=/home/neauoire/Documents/playdate/PlaydateSDK-1.13.1
make
Note: PLAYDATE_SDK must be an absolute path, otherwise you may get hard-to-diagnose errors from the SDK's build system.
The sim target (for this project only) launches the Playdate simulator with the compiled output.
make sim