From cf84a7d4f55733bb6d306b3eb5664fa8f445506f Mon Sep 17 00:00:00 2001 From: jonnosan Date: Sun, 20 Dec 2009 04:59:10 +0000 Subject: [PATCH] moved c64 only vt100 code from generic ip65 file to c64 only driver file git-svn-id: http://svn.code.sf.net/p/netboot65/code@226 93682198-c243-4bdb-bd91-e943c89aac3b --- client/drivers/Makefile | 3 ++- client/{ip65/vt100_c64.s => drivers/c64_vt100.s} | 3 +-- client/ip65/Makefile | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) rename client/{ip65/vt100_c64.s => drivers/c64_vt100.s} (95%) 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 \