]> git.sur5r.net Git - cc65/blob - libsrc/apple2/tgi_mode_table.s
don't use constructor to setup runtime stack
[cc65] / libsrc / apple2 / tgi_mode_table.s
1 ;
2 ; Ullrich von Bassewitz, 31.05.2002
3 ;
4 ; Apple II mode table for tgi_map_mode
5 ;
6
7         .export         _tgi_mode_table
8
9         .include        "tgi-mode.inc"
10
11 ;----------------------------------------------------------------------------
12 ; Mode table. Contains entries of mode and driver name, the driver name being
13 ; null terminated. A mode with code zero terminates the list. The first entry
14 ; defines also the default mode and driver for the system.
15 ; BEWARE: The current implementation of tgi_map_mode does not work with tables
16 ; larger that 255 bytes!
17
18         .rodata
19
20 _tgi_mode_table:
21         .ifdef  __APPLE2ENH__
22         .byte   TGI_MODE_280_192_8, "A2E.HI.TGI", 0
23         .byte   TGI_MODE_40_48_16,  "A2E.LO.TGI", 0
24         .else
25         .byte   TGI_MODE_280_192_8, "A2.HI.TGI", 0
26         .byte   TGI_MODE_40_48_16,  "A2.LO.TGI", 0
27         .endif
28         .byte   0               ; End marker