diff options
Diffstat (limited to 'charmaps/cuadros-basic.map')
-rw-r--r-- | charmaps/cuadros-basic.map | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/charmaps/cuadros-basic.map b/charmaps/cuadros-basic.map new file mode 100644 index 0000000..66d80b5 --- /dev/null +++ b/charmaps/cuadros-basic.map @@ -0,0 +1,32 @@ +#ifndef __default_h__
+#define __default_h__
+
+#define CHARWIDTH 5
+#define CHARHEIGHT 8
+#define NBCHARS 128
+
+static char charmaps[NBCHARS][CHARWIDTH*CHARHEIGHT] = {
+
+{
+0,0,0,0,0,
+0,0,0,0,0,
+1,1,0,0,0,
+1,0,1,0,0,
+1,0,1,0,0,
+1,1,0,0,0,
+1,0,0,0,0,
+1,0,0,0,0,
+},
+{
+0,0,0,0,0,
+0,0,0,0,0,
+0,1,0,0,0,
+0,0,0,0,0,
+0,0,0,0,0,
+0,1,0,0,0,
+1,0,0,0,0,
+0,0,0,0,0,
+},
+};
+
+#endif
|