mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
071c58bda2
git-svn-id: svn://svn.cc65.org/cc65/trunk@3421 b7a2c559-68d2-44c3-8de9-860c34a00d81
30 lines
904 B
ArmAsm
30 lines
904 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 31.05.2002
|
|
;
|
|
; Apple II 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:
|
|
.ifdef __APPLE2ENH__
|
|
.byte TGI_MODE_280_192_6, "A2E.HI.TGI", 0
|
|
.byte TGI_MODE_40_40_16, "A2E.LO.TGI", 0
|
|
; .byte TGI_MODE_560_192_2, "A2E.DHI.TGI", 0
|
|
.else
|
|
.byte TGI_MODE_280_192_6, "A2.HI.TGI", 0
|
|
.byte TGI_MODE_40_40_16, "A2.LO.TGI", 0
|
|
; .byte TGI_MODE_560_192_2, "A2.DHI.TGI", 0
|
|
.endif
|
|
.byte 0 ; End marker
|