SHELL = /bin/bash
TARGET ?= test.xex

default : $(TARGET) run

run: $(TARGET)
	@cp $(TARGET) /vm/test.xex
	@reboot_atari800

%.xex: %.s
	64tass -Wall --atari-xex -o $@ $<
