Committed the basic printer module, cleaned up a bit.

This commit is contained in:
waltje
2018-09-01 06:35:50 -04:00
parent 061613df32
commit 933b8cacd0
5 changed files with 524 additions and 25 deletions

View File

@@ -8,7 +8,7 @@
#
# Makefile for Windows systems using the MinGW32 environment.
#
# Version: @(#)Makefile.mingw 1.0.55 2018/08/31
# Version: @(#)Makefile.mingw 1.0.56 2018/08/31
#
# Author: Fred N. van Kempen, <decwiz@yahoo.com>
#
@@ -548,7 +548,7 @@ ifeq ($(DEV_BRANCH), y)
ifeq ($(PRINTERS), y)
OPTS += -DUSE_PRINTERS=1
DEVBROBJ += prt_text.o prt_cpmap.o prt_escp.o
DEVBROBJ += prt_cpmap.o prt_escp.o
endif
endif
@@ -610,7 +610,9 @@ INTELOBJ := intel.o \
DEVOBJ := bugger.o \
isamem.o isartc.o \
game.o game_dev.o \
parallel.o parallel_dev.o serial.o \
parallel.o parallel_dev.o \
prt_text.o \
serial.o \
sio_fdc37c66x.o sio_fdc37c669.o sio_fdc37c93x.o \
sio_pc87306.o sio_w83877f.o sio_um8669f.o \
keyboard.o \

View File

@@ -8,7 +8,7 @@
#
# Makefile for Windows using Visual Studio 2015.
#
# Version: @(#)Makefile.VC 1.0.41 2018/08/31
# Version: @(#)Makefile.VC 1.0.42 2018/08/31
#
# Author: Fred N. van Kempen, <decwiz@yahoo.com>
#
@@ -522,7 +522,7 @@ ifeq ($(DEV_BRANCH), y)
ifeq ($(PRINTERS), y)
OPTS += -DUSE_PRINTERS=1
DEVBROBJ += prt_text.obj prt_cpmap.obj prt_escp.obj
DEVBROBJ += prt_cpmap.obj prt_escp.obj
endif
endif
@@ -580,7 +580,9 @@ INTELOBJ := intel.obj \
DEVOBJ := bugger.obj \
isamem.obj isartc.obj \
game.obj game_dev.obj \
parallel.obj parallel_dev.obj serial.obj \
parallel.obj parallel_dev.obj \
prt_text.obj \
serial.obj \
sio_fdc37c66x.obj sio_fdc37c669.obj sio_fdc37c93x.obj \
sio_pc87306.obj sio_w83877f.obj sio_um8669f.obj \
keyboard.obj \