Fun with emu65el02

master
Astoria 1 year ago
parent 465881c9b2
commit 98afb2359f

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

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

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

Loading…
Cancel
Save