1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

Added the TGI mode table

git-svn-id: svn://svn.cc65.org/cc65/trunk@1435 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-10-03 18:19:25 +00:00
parent eab19873f3
commit 91e26f573c
6 changed files with 74 additions and 3 deletions

View File

@ -23,6 +23,7 @@ OBJS = _scrsize.o \
mouse.o \
readjoy.o \
rs232.o \
tgi_mode_table.o\
write.o
all: $(OBJS)

View File

@ -0,0 +1,23 @@
;
; Ullrich von Bassewitz, 03.10.2002
;
; C128 mode table for tgi_map_mode
;
.export _tgi_mode_table
.include "tgi-mode.inc"
;----------------------------------------------------------------------------
; Mode table. Contains entries of mode and driver name, the driver name being
; null terminated. A mode with code zero terminates the list.
; BEWARE: The current implementation of tgi_map_mode does not work with tables
; larger that 255 bytes!
.rodata
_tgi_mode_table:
.byte TGI_MODE_320_200_2, "c128-320-200-2.tgi", 0
.byte 0 ; End marker

View File

@ -29,7 +29,8 @@ OBJS = _scrsize.o \
peeksys.o \
pokesys.o \
readjoy.o \
rs232.o
rs232.o \
tgi_mode_table.o
all: $(OBJS)

View File

@ -0,0 +1,23 @@
;
; Ullrich von Bassewitz, 03.10.2002
;
; CBM 510 mode table for tgi_map_mode
;
.export _tgi_mode_table
.include "tgi-mode.inc"
;----------------------------------------------------------------------------
; Mode table. Contains entries of mode and driver name, the driver name being
; null terminated. A mode with code zero terminates the list.
; BEWARE: The current implementation of tgi_map_mode does not work with tables
; larger that 255 bytes!
.rodata
_tgi_mode_table:
.byte TGI_MODE_320_200_2, "cbm510-320-200-2.tgi", 0
.byte 0 ; End marker

View File

@ -20,10 +20,11 @@ OBJS = _scrsize.o \
cputc.o \
crt0.o \
kbhit.o \
readjoy.o
readjoy.o \
tgi_mode_table.o
all: $(OBJS)
clean:
@rm -f $(OBJS)
@rm -f $(OBJS)

View File

@ -0,0 +1,22 @@
;
; Ullrich von Bassewitz, 03.10.2002
;
; Plus/4 mode table for tgi_map_mode
;
.export _tgi_mode_table
.include "tgi-mode.inc"
;----------------------------------------------------------------------------
; Mode table. Contains entries of mode and driver name, the driver name being
; null terminated. A mode with code zero terminates the list.
; BEWARE: The current implementation of tgi_map_mode does not work with tables
; larger that 255 bytes!
.rodata
_tgi_mode_table:
.byte TGI_MODE_320_200_2, "plus4-320-200-2.tgi", 0
.byte 0 ; End marker