1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 07:29:05 +00:00
cc65/libsrc/atari/tgi_mode_table.s
cpg 7b42fd028a fix comment
git-svn-id: svn://svn.cc65.org/cc65/trunk@4457 b7a2c559-68d2-44c3-8de9-860c34a00d81
2009-11-10 21:56:56 +00:00

39 lines
1.3 KiB
ArmAsm

;
; Atari 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