-/* $Id: drv_LCDLinux.c,v 1.2 2005/01/30 06:43:22 reinelt Exp $
+/* $Id: drv_LCDLinux.c,v 1.3 2005/02/24 06:51:40 reinelt Exp $
*
* driver for the LCD-Linux HD44780 kernel driver
* http://lcd-linux.sourceforge.net
*
*
* $Log: drv_LCDLinux.c,v $
+ * Revision 1.3 2005/02/24 06:51:40 reinelt
+ * LCD-Linux driver GOTO_COST corrected
+ *
* Revision 1.2 2005/01/30 06:43:22 reinelt
* driver for LCD-Linux finished
*
YRES = 8; /* pixel height of one char */
CHARS = 8; /* number of user-defineable characters */
CHAR0 = 0; /* ASCII of first user-defineable char */
-
- /* Fixme: */
- GOTO_COST = 2; /* number of bytes a goto command requires */
+ GOTO_COST = 1; /* number of bytes a goto command requires */
/* real worker functions */
drv_generic_text_real_write = drv_LL_write;