X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Ffont.c;h=f4686f5e7b6ac4bd25dcf6fa2e8b6bae93878cf8;hb=646a88d7412eec847c282b9b2050b3a37a9af7a5;hp=58e00e033785f4c5f57e4aaf11b038c584574cbc;hpb=37d3acaa622b7f695ce57578e56311d031a22d22;p=bertos.git diff --git a/mware/font.c b/mware/font.c index 58e00e03..f4686f5e 100755 --- a/mware/font.c +++ b/mware/font.c @@ -3,7 +3,7 @@ * * * \version $Id$ @@ -13,31 +13,46 @@ * \brief Font 8x6 IBM-PC 8bit */ -/* - * $Log$ - * Revision 1.1 2004/05/23 15:43:16 bernie - * Import mware modules. - * - * Revision 1.5 2004/03/24 15:48:53 bernie - * Remove Copyright messages from Doxygen output - * - * Revision 1.4 2004/03/03 18:30:17 bernie - * Substitute left triangle glyph with left arrow - * - * Revision 1.3 2004/02/28 14:48:33 aleph - * Improve arrow glyphs - * - * Revision 1.2 2004/01/13 12:15:28 aleph - * Move font table in program memory; add font.h - * - * Revision 1.1 2004/01/07 23:31:54 aleph - * Add text routines - * - */ +/*#* + *#* $Log$ + *#* Revision 1.6 2005/11/04 16:20:02 bernie + *#* Fix reference to README.devlib in header. + *#* + *#* Revision 1.5 2005/01/08 09:20:38 bernie + *#* Add missing type in declaration. + *#* + *#* Revision 1.4 2004/12/31 16:42:55 bernie + *#* Sanitize for non-Harvard processors. + *#* + *#* Revision 1.3 2004/08/25 14:12:09 rasky + *#* Aggiornato il comment block dei log RCS + *#* + *#* Revision 1.2 2004/06/03 11:27:09 bernie + *#* Add dual-license information. + *#* + *#* Revision 1.1 2004/05/23 15:43:16 bernie + *#* Import mware modules. + *#* + *#* Revision 1.5 2004/03/24 15:48:53 bernie + *#* Remove Copyright messages from Doxygen output + *#* + *#* Revision 1.4 2004/03/03 18:30:17 bernie + *#* Substitute left triangle glyph with left arrow + *#* + *#* Revision 1.3 2004/02/28 14:48:33 aleph + *#* Improve arrow glyphs + *#* + *#* Revision 1.2 2004/01/13 12:15:28 aleph + *#* Move font table in program memory; add font.h + *#* + *#* Revision 1.1 2004/01/07 23:31:54 aleph + *#* Add text routines + *#* + *#*/ #include "font.h" -const prog_uchar font[256 * 6] = +const PROGMEM uint8_t font[256 * 6] = { /* 0x00 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* */ @@ -327,4 +342,4 @@ const prog_uchar font[256 * 6] = 0x0A, 0x09, 0x0D, 0x0A, 0x00, 0x00, /* ý */ 0x1E, 0x1E, 0x1E, 0x1E, 0x1E, 0x00, /* þ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* ÿ */ -}; +};