add Atari TGI drivers from Fatih Aygun
git-svn-id: svn://svn.cc65.org/cc65/trunk@4456 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
40
libsrc/atari/tgi_mode_table.s
Normal file
40
libsrc/atari/tgi_mode_table.s
Normal file
@@ -0,0 +1,40 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 31.05.2002
|
||||
;
|
||||
; C64 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. The first entry
|
||||
; defines also the default mode and driver for the system.
|
||||
; 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_192_2, "ATARI8.TGI", 0
|
||||
.byte TGI_MODE_160_192_4, "ATARI15.TGI", 0
|
||||
.byte TGI_MODE_160_192_2, "ATARI14.TGI", 0
|
||||
.byte TGI_MODE_160_96_4, "ATARI7.TGI", 0
|
||||
.byte TGI_MODE_160_96_2, "ATARI6.TGI", 0
|
||||
.byte TGI_MODE_80_48_4, "ATARI5.TGI", 0
|
||||
.byte TGI_MODE_80_48_2, "ATARI4.TGI", 0
|
||||
.byte TGI_MODE_40_24_4, "ATARI3.TGI", 0
|
||||
.byte TGI_MODE_80_192_16b, "ATARI9.TGI", 0
|
||||
.byte TGI_MODE_80_192_9, "ATARI10.TGI", 0
|
||||
.byte TGI_MODE_80_192_16h, "ATARI11.TGI", 0
|
||||
; Double paged drivers
|
||||
.byte TGI_MODE_320_192_2_2p, "ATR8P2.TGI", 0
|
||||
.byte TGI_MODE_80_192_16b_2p, "ATR9P2.TGI", 0
|
||||
.byte TGI_MODE_160_192_4_2p, "ATR15P2.TGI", 0
|
||||
.byte TGI_MODE_80_192_9_2p, "ATR10P2.TGI", 0
|
||||
|
||||
.byte 0 ; End marker
|
||||
|
||||
|
||||
Reference in New Issue
Block a user