/* */
/* */
/* */
-/* (C) 2002-2009, Ullrich von Bassewitz */
+/* (C) 2002-2012, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* TGI kernel variables */
-extern void* tgi_drv; /* Pointer to driver */
-extern unsigned char tgi_error; /* Last error code */
-extern unsigned char tgi_gmode; /* Flag: Graphics mode active */
-extern int tgi_curx; /* Current drawing cursor X */
-extern int tgi_cury; /* Current drawing cursor Y */
-extern unsigned char tgi_color; /* Current drawing color */
-extern unsigned tgi_xres; /* X resolution of the current mode */
-extern unsigned tgi_yres; /* Y resolution of the current mode */
-extern unsigned char tgi_colorcount; /* Number of available colors */
-extern unsigned char tgi_pagecount; /* Number of available screens */
-extern unsigned tgi_aspectratio;/* Aspect ratio as fixed point 8.8 */
+extern void* tgi_drv; /* Pointer to driver */
+extern unsigned char tgi_error; /* Last error code */
+extern unsigned char tgi_gmode; /* Flag: Graphics mode active */
+extern int tgi_curx; /* Current drawing cursor X */
+extern int tgi_cury; /* Current drawing cursor Y */
+extern unsigned char tgi_color; /* Current drawing color */
+extern unsigned char tgi_font; /* Current font type */
+extern unsigned tgi_xres; /* X resolution of the current mode */
+extern unsigned tgi_yres; /* Y resolution of the current mode */
+extern unsigned char tgi_colorcount; /* Number of available colors */
+extern unsigned char tgi_pagecount; /* Number of available screens */
+extern unsigned char tgi_fontwidth; /* System font width in pixels */
+extern unsigned char tgi_fontheight; /* System font height in pixels */
+extern unsigned tgi_aspectratio; /* Aspect ratio as fixed point 8.8 */
+extern unsigned char tgi_flags; /* TGI driver flags */
+extern unsigned tgi_textscalew[2]; /* Vector/bitmap font scale 8.8 */
+extern unsigned tgi_textscaleh[2]; /* Vector/bitmap font scale 8.8 */
+extern unsigned tgi_charwidth; /* Width of scaled bitmap font */
+extern unsigned tgi_charheight; /* Height of scaled bitmap font */