diff --git a/client/drivers/Makefile b/client/drivers/Makefile index d14a214..d686f85 100644 --- a/client/drivers/Makefile +++ b/client/drivers/Makefile @@ -21,7 +21,8 @@ all: $(DRIVERS) apple2prog.lib: a2print.o uthernet.o a2timer.o a2kernal.o a2input.o a2charconv.o ar65 a $@ $^ -c64prog.lib: c64print.o rr-net.o c64timer.o c64kernal.o c64inputs.o c64_disk_access.o c64charconv.o +c64prog.lib: c64print.o rr-net.o c64timer.o c64kernal.o c64inputs.o c64_disk_access.o c64charconv.o c64_vt100.o + ar65 a $@ $^ #c64nb65.lib: c64print.o rr-net.o c64timer_nb65.o c64kernal.o c64inputs.o c64_disk_access.o c64charconv.o diff --git a/client/ip65/vt100_c64.s b/client/drivers/c64_vt100.s similarity index 95% rename from client/ip65/vt100_c64.s rename to client/drivers/c64_vt100.s index e402fbd..f7ddb12 100644 --- a/client/ip65/vt100_c64.s +++ b/client/drivers/c64_vt100.s @@ -15,7 +15,6 @@ ; Y = 1 means A contains single character to send to remote host ; Y = 2 means AX points at null terminated string to send to remote host (e.g. an ANSI escape sequence) -;FIXME! - this should be a platform-specific driver .include "../inc/common.i" @@ -2088,7 +2087,7 @@ petscii_to_ascii: ROM_FONT: .incbin "../inc/vt100_font.bin" -;-- LICENSE FOR vt100_c64.s -- +;-- LICENSE FOR c64_vt100.s -- ; The contents of this file are subject to the Mozilla Public License ; Version 1.1 (the "License"); you may not use this file except in ; compliance with the License. You may obtain a copy of the License at diff --git a/client/ip65/Makefile b/client/ip65/Makefile index c6bf3c7..ed41f3a 100644 --- a/client/ip65/Makefile +++ b/client/ip65/Makefile @@ -21,7 +21,6 @@ ETHOBJS= \ printf.o \ debug.o \ http.o \ - vt100_c64.o \ httpd.o \ dhcp.o \ dns.o \