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:
parent
eab19873f3
commit
91e26f573c
@ -23,6 +23,7 @@ OBJS = _scrsize.o \
|
|||||||
mouse.o \
|
mouse.o \
|
||||||
readjoy.o \
|
readjoy.o \
|
||||||
rs232.o \
|
rs232.o \
|
||||||
|
tgi_mode_table.o\
|
||||||
write.o
|
write.o
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
|
23
libsrc/c128/tgi_mode_table.s
Normal file
23
libsrc/c128/tgi_mode_table.s
Normal 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
|
||||||
|
|
||||||
|
|
@ -29,7 +29,8 @@ OBJS = _scrsize.o \
|
|||||||
peeksys.o \
|
peeksys.o \
|
||||||
pokesys.o \
|
pokesys.o \
|
||||||
readjoy.o \
|
readjoy.o \
|
||||||
rs232.o
|
rs232.o \
|
||||||
|
tgi_mode_table.o
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
|
|
||||||
|
23
libsrc/cbm510/tgi_mode_table.s
Normal file
23
libsrc/cbm510/tgi_mode_table.s
Normal 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
|
||||||
|
|
||||||
|
|
@ -20,10 +20,11 @@ OBJS = _scrsize.o \
|
|||||||
cputc.o \
|
cputc.o \
|
||||||
crt0.o \
|
crt0.o \
|
||||||
kbhit.o \
|
kbhit.o \
|
||||||
readjoy.o
|
readjoy.o \
|
||||||
|
tgi_mode_table.o
|
||||||
|
|
||||||
all: $(OBJS)
|
all: $(OBJS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm -f $(OBJS)
|
@rm -f $(OBJS)
|
||||||
|
|
||||||
|
22
libsrc/plus4/tgi_mode_table.s
Normal file
22
libsrc/plus4/tgi_mode_table.s
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user