This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chip8 Interpreter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PRJ_NAME = arion | |
MCU ?= atmega2560 | |
debug ?= false | |
# -- Global variables -- | |
# Enviroment variables that must be set: | |
# AVR_HOME = path to the avr toolchain | |
# BOARD_PORT = connected board port | |
ATMEGA_TOOLCHAIN := $(AVR_HOME)/bin | |
# -- GNU Tools -- | |
AS := $(ATMEGA_TOOLCHAIN)/avr-as # Assembler |