2003-11-12 16:41:09 +00:00
|
|
|
;
|
2003-12-05 18:29:06 +00:00
|
|
|
; Ullrich von Bassewitz, 31.05.2002
|
2003-11-12 16:41:09 +00:00
|
|
|
;
|
2003-12-05 18:29:06 +00:00
|
|
|
; Apple II mode table for tgi_map_mode
|
2003-11-12 16:41:09 +00:00
|
|
|
;
|
|
|
|
|
2005-03-26 17:03:30 +00:00
|
|
|
.export _tgi_mode_table
|
2003-11-12 16:41:09 +00:00
|
|
|
|
2005-03-26 17:03:30 +00:00
|
|
|
.include "tgi-mode.inc"
|
2003-11-12 16:41:09 +00:00
|
|
|
|
|
|
|
;----------------------------------------------------------------------------
|
|
|
|
; Mode table. Contains entries of mode and driver name, the driver name being
|
2009-09-11 18:59:37 +00:00
|
|
|
; null terminated. A mode with code zero terminates the list. The first entry
|
|
|
|
; defines also the default mode and driver for the system.
|
2003-11-12 16:41:09 +00:00
|
|
|
; BEWARE: The current implementation of tgi_map_mode does not work with tables
|
|
|
|
; larger that 255 bytes!
|
|
|
|
|
2008-03-16 09:37:22 +00:00
|
|
|
.rodata
|
2003-11-12 16:41:09 +00:00
|
|
|
|
|
|
|
_tgi_mode_table:
|
2005-03-26 17:03:30 +00:00
|
|
|
.ifdef __APPLE2ENH__
|
2008-03-16 09:37:22 +00:00
|
|
|
.byte TGI_MODE_280_192_8, "A2E.HI.TGI", 0
|
|
|
|
.byte TGI_MODE_40_48_16, "A2E.LO.TGI", 0
|
2005-03-26 17:03:30 +00:00
|
|
|
.else
|
2008-03-16 09:37:22 +00:00
|
|
|
.byte TGI_MODE_280_192_8, "A2.HI.TGI", 0
|
|
|
|
.byte TGI_MODE_40_48_16, "A2.LO.TGI", 0
|
2005-03-26 17:03:30 +00:00
|
|
|
.endif
|
2008-03-16 09:37:22 +00:00
|
|
|
.byte 0 ; End marker
|