]> git.sur5r.net Git - cc65/blobdiff - asminc/tgi-mode.inc
Fixed several address size issues
[cc65] / asminc / tgi-mode.inc
index 48c0273b8a74025ddc7f4692943ac559b721dd2b..60425873a1d6cc9d2821d5b186bbf647160d3fa4 100644 (file)
@@ -6,10 +6,10 @@
 ;*                                                                           */
 ;*                                                                           */
 ;*                                                                           */
-;* (C) 2002      Ullrich von Bassewitz                                       */
-;*               Wacholderweg 14                                             */
-;*               D-70597 Stuttgart                                           */
-;* EMail:        uz@musoftware.de                                            */
+;* (C) 2002-2003 Ullrich von Bassewitz                                       */
+;*               Römerstraße 52                                              */
+;*               D-70794 Filderstadt                                         */
+;* EMail:        uz@cc65.org                                                 */
 ;*                                                                           */
 ;*                                                                           */
 ;* This software is provided 'as-is', without any expressed or implied       */
 
 
 ; Graphics modes. Zero may not be used as a mode number.
-TGI_MODE_320_200_2              = 1      ; 320x200, 2 colors (b/w)
-TGI_MODE_160_200_4              = 2      ; 160x200, 4 colors
-TGI_MODE_640_200_2             = 3      ; 640x200, 2 colors (b/w)
-TGI_MODE_640_480_2             = 4      ; 640x480, 2 colors (b/w)
-
+.enum
+        TGI_MODE_INVALID
+        TGI_MODE_320_200_2      ; 320x200,  2 colors (b/w)
+        TGI_MODE_160_200_4      ; 160x200,  4 colors
+        TGI_MODE_640_200_2     ; 640x200,  2 colors (b/w)
+        TGI_MODE_640_480_2     ; 640x480,  2 colors (b/w)
+        TGI_MODE_280_192_6      ; 280x192,  6 colors
+        TGI_MODE_560_192_2      ; 560x192,  2 colors
+        TGI_MODE_40_40_16       ; 40x40,   16 colors
+.endenum
 
 
+