]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/tgi_mode_table.s
Update from Oliver Schmidt: Includes gotox/gotoy which were missing before.
[cc65] / libsrc / apple2 / tgi_mode_table.s
index 7bde2e29cbae9ea810a25e5b5acd67870551b0f2..20d7820a2123703c7c489974cc3f78fbd091287a 100644 (file)
@@ -1,12 +1,12 @@
 ;
-; Ullrich von Bassewitz, 2003-11-12
+; Ullrich von Bassewitz, 31.05.2002
 ;
-; Apple ][ mode table for tgi_map_mode
+; Apple II mode table for tgi_map_mode
 ;
 
-       .export         _tgi_mode_table
+        .export                _tgi_mode_table
 
-       .include        "tgi-mode.inc"
+        .include       "tgi-mode.inc"
 
 ;----------------------------------------------------------------------------
 ; Mode table. Contains entries of mode and driver name, the driver name being
 .rodata
 
 _tgi_mode_table:
-        .byte   TGI_MODE_280_192_2, "apple2-280-192-6.tgi", 0
+        .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
-
-