blob: 98eb07f0b30114e2dbfe723f9d1cf7dbc902a6c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all: config.xex
config.xex: config.c exetrailer.s ../src/config.h
cl65 -t atari -C ../src/atari.cfg -o config.xex config.c exetrailer.s
test:
cl65 -t atari -C ../src/atari.cfg -o config.xex config.c exetrailer.s
cl65 -t atari -C ../src/atari.cfg -o conftest.xex conftest.c
cat config.xex conftest.xex > autorun.sys
cp dos25_sd.atr test.atr
axe -w autorun.sys test.atr
|