Fun with emu65el02

master
Astoria 1 year ago
parent 465881c9b2
commit 98afb2359f

@ -2,7 +2,6 @@ LD = ../bin/ld65
AS = ../bin/ca65 AS = ../bin/ca65
CC = ../bin/cc65 CC = ../bin/cc65
AL = ../bin/align AL = ../bin/align
CL = ../bin/cl65
CINCLUDE = -I../include CINCLUDE = -I../include
CFLAGS = -t none --cpu $(CPU) CFLAGS = -t none --cpu $(CPU)
@ -32,5 +31,10 @@ all: $(IMAGES)
clean: clean:
rm *.o *.s rm *.o *.s
.PHONY: test
test: test_iox.img
emu65el02 test_iox.img
.SUFFIXES: .SUFFIXES:

@ -21,6 +21,6 @@ void main() {
rb_map_device(IOXID); rb_map_device(IOXID);
expand->out = 0; expand->out = 0;
output = (int*)expand->in; output = (int*)expand->in;
conprint("aeiou", 0, 0); conprint("aeiou FANTASTIQUE!", 0, 0);
set_cursor_pos(5,5); set_cursor_pos(5,5);
} }

@ -16,6 +16,10 @@ test:
.PONY: iox .PONY: iox
iox: iox:
make -C IOX/ make -C IOX/
.PONY: ioxtest
ioxtest:
make -C IOX/ test
.PHONY: lib .PHONY: lib

Loading…
Cancel
Save