]> git.sur5r.net Git - cc65/blob - libsrc/apple2/tgi_mode_table.s
7bde2e29cbae9ea810a25e5b5acd67870551b0f2
[cc65] / libsrc / apple2 / tgi_mode_table.s
1 ;
2 ; Ullrich von Bassewitz, 2003-11-12
3 ;
4 ; Apple ][ 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.
14 ; BEWARE: The current implementation of tgi_map_mode does not work with tables
15 ; larger that 255 bytes!
16
17 .rodata
18
19 _tgi_mode_table:
20         .byte   TGI_MODE_280_192_2, "apple2-280-192-6.tgi", 0
21         .byte   0       ; End marker
22
23