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
This commit is contained in:
jonnosan 2009-12-20 04:59:10 +00:00
parent 83d9924e95
commit cf84a7d4f5
3 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -21,7 +21,6 @@ ETHOBJS= \
printf.o \
debug.o \
http.o \
vt100_c64.o \
httpd.o \
dhcp.o \
dns.o \