E_paper, E_ink, Screen size 1.54", resolution 200x200, 4 wire spi, Waveshare, Black and White, Kl25Z, 8 wire print connector, supply 3.3 Volt, IL0373 Controller, font size is 8, 12, 16 and 24.

Dependencies:   mbed

Committer:
GerritPathuis
Date:
Sat Mar 31 08:40:16 2018 +0000
Revision:
10:08e026240a5f
Parent:
3:e4399b5ceb4b
Minor text update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GerritPathuis 1:d27a7e06c233 1 /**
GerritPathuis 1:d27a7e06c233 2 ******************************************************************************
GerritPathuis 1:d27a7e06c233 3 * @file font20.c
GerritPathuis 1:d27a7e06c233 4 * @author MCD Application Team
GerritPathuis 1:d27a7e06c233 5 * @version V1.0.0
GerritPathuis 1:d27a7e06c233 6 * @date 18-February-2014
GerritPathuis 1:d27a7e06c233 7 * @brief This file provides text font20 for STM32xx-EVAL's LCD driver.
GerritPathuis 1:d27a7e06c233 8 ******************************************************************************
GerritPathuis 1:d27a7e06c233 9 * @attention
GerritPathuis 1:d27a7e06c233 10 *
GerritPathuis 1:d27a7e06c233 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
GerritPathuis 1:d27a7e06c233 12 *
GerritPathuis 1:d27a7e06c233 13 * Redistribution and use in source and binary forms, with or without modification,
GerritPathuis 1:d27a7e06c233 14 * are permitted provided that the following conditions are met:
GerritPathuis 1:d27a7e06c233 15 * 1. Redistributions of source code must retain the above copyright notice,
GerritPathuis 1:d27a7e06c233 16 * this list of conditions and the following disclaimer.
GerritPathuis 1:d27a7e06c233 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
GerritPathuis 1:d27a7e06c233 18 * this list of conditions and the following disclaimer in the documentation
GerritPathuis 1:d27a7e06c233 19 * and/or other materials provided with the distribution.
GerritPathuis 1:d27a7e06c233 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
GerritPathuis 1:d27a7e06c233 21 * may be used to endorse or promote products derived from this software
GerritPathuis 1:d27a7e06c233 22 * without specific prior written permission.
GerritPathuis 1:d27a7e06c233 23 *
GerritPathuis 1:d27a7e06c233 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
GerritPathuis 1:d27a7e06c233 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
GerritPathuis 1:d27a7e06c233 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
GerritPathuis 1:d27a7e06c233 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
GerritPathuis 1:d27a7e06c233 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
GerritPathuis 1:d27a7e06c233 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
GerritPathuis 1:d27a7e06c233 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
GerritPathuis 1:d27a7e06c233 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
GerritPathuis 1:d27a7e06c233 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
GerritPathuis 1:d27a7e06c233 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GerritPathuis 1:d27a7e06c233 34 *
GerritPathuis 1:d27a7e06c233 35 ******************************************************************************
GerritPathuis 1:d27a7e06c233 36 */
GerritPathuis 1:d27a7e06c233 37
GerritPathuis 1:d27a7e06c233 38 /* Includes ------------------------------------------------------------------*/
GerritPathuis 1:d27a7e06c233 39 #include "fonts.h"
GerritPathuis 3:e4399b5ceb4b 40
GerritPathuis 1:d27a7e06c233 41
GerritPathuis 1:d27a7e06c233 42 // Character bitmaps for Courier New 15pt
GerritPathuis 3:e4399b5ceb4b 43 const uint8_t Font20_Table[] =
GerritPathuis 1:d27a7e06c233 44 {
GerritPathuis 1:d27a7e06c233 45 // @0 ' ' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 46 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 47 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 48 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 49 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 50 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 51 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 52 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 53 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 54 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 55 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 56 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 57 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 58 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 59 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 60 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 61 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 62 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 63 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 64 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 65 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 66
GerritPathuis 1:d27a7e06c233 67 // @40 '!' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 68 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 69 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 70 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 71 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 72 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 73 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 74 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 75 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 76 0x02, 0x00, // #
GerritPathuis 1:d27a7e06c233 77 0x02, 0x00, // #
GerritPathuis 1:d27a7e06c233 78 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 79 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 80 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 81 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 82 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 83 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 84 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 85 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 86 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 87 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 88
GerritPathuis 1:d27a7e06c233 89 // @80 '"' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 90 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 91 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 92 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 93 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 94 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 95 0x08, 0x40, // # #
GerritPathuis 1:d27a7e06c233 96 0x08, 0x40, // # #
GerritPathuis 1:d27a7e06c233 97 0x08, 0x40, // # #
GerritPathuis 1:d27a7e06c233 98 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 99 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 100 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 101 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 102 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 103 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 104 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 105 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 106 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 107 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 108 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 109 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 110
GerritPathuis 1:d27a7e06c233 111 // @120 '#' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 112 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 113 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 114 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 115 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 116 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 117 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 118 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 119 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 120 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 121 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 122 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 123 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 124 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 125 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 126 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 127 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 128 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 129 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 130 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 131 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 132
GerritPathuis 1:d27a7e06c233 133 // @160 '$' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 134 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 135 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 136 0x07, 0xE0, // ######
GerritPathuis 1:d27a7e06c233 137 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 138 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 139 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 140 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 141 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 142 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 143 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 144 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 145 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 146 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 147 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 148 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 149 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 150 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 151 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 152 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 153 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 154
GerritPathuis 1:d27a7e06c233 155 // @200 '%' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 156 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 157 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 158 0x22, 0x00, // # #
GerritPathuis 1:d27a7e06c233 159 0x22, 0x00, // # #
GerritPathuis 1:d27a7e06c233 160 0x22, 0x00, // # #
GerritPathuis 1:d27a7e06c233 161 0x1C, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 162 0x01, 0xE0, // ####
GerritPathuis 1:d27a7e06c233 163 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 164 0x3C, 0x00, // ####
GerritPathuis 1:d27a7e06c233 165 0x31, 0xC0, // ## ###
GerritPathuis 1:d27a7e06c233 166 0x02, 0x20, // # #
GerritPathuis 1:d27a7e06c233 167 0x02, 0x20, // # #
GerritPathuis 1:d27a7e06c233 168 0x02, 0x20, // # #
GerritPathuis 1:d27a7e06c233 169 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 170 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 171 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 172 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 173 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 174 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 175 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 176
GerritPathuis 1:d27a7e06c233 177 // @240 '&' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 178 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 179 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 180 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 181 0x03, 0xE0, // #####
GerritPathuis 1:d27a7e06c233 182 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 183 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 184 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 185 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 186 0x0F, 0x30, // #### ##
GerritPathuis 1:d27a7e06c233 187 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 188 0x19, 0xE0, // ## ####
GerritPathuis 1:d27a7e06c233 189 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 190 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 191 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 192 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 193 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 194 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 195 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 196 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 197 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 198
GerritPathuis 1:d27a7e06c233 199 // @280 ''' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 200 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 201 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 202 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 203 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 204 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 205 0x01, 0x00, // #
GerritPathuis 1:d27a7e06c233 206 0x01, 0x00, // #
GerritPathuis 1:d27a7e06c233 207 0x01, 0x00, // #
GerritPathuis 1:d27a7e06c233 208 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 209 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 210 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 211 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 212 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 213 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 214 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 215 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 216 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 217 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 218 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 219 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 220
GerritPathuis 1:d27a7e06c233 221 // @320 '(' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 222 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 223 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 224 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 225 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 226 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 227 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 228 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 229 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 230 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 231 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 232 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 233 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 234 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 235 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 236 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 237 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 238 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 239 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 240 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 241 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 242
GerritPathuis 1:d27a7e06c233 243 // @360 ')' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 244 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 245 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 246 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 247 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 248 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 249 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 250 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 251 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 252 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 253 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 254 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 255 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 256 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 257 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 258 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 259 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 260 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 261 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 262 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 263 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 264
GerritPathuis 1:d27a7e06c233 265 // @400 '*' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 266 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 267 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 268 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 269 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 270 0x1B, 0x60, // ## ## ##
GerritPathuis 1:d27a7e06c233 271 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 272 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 273 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 274 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 275 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 276 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 277 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 278 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 279 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 280 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 281 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 282 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 283 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 284 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 285 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 286
GerritPathuis 1:d27a7e06c233 287 // @440 '+' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 288 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 289 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 290 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 291 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 292 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 293 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 294 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 295 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 296 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 297 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 298 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 299 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 300 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 301 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 302 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 303 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 304 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 305 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 306 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 307 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 308
GerritPathuis 1:d27a7e06c233 309 // @480 ',' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 310 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 311 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 312 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 313 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 314 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 315 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 316 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 317 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 318 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 319 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 320 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 321 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 322 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 323 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 324 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 325 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 326 0x04, 0x00, // #
GerritPathuis 1:d27a7e06c233 327 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 328 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 329 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 330
GerritPathuis 1:d27a7e06c233 331 // @520 '-' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 332 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 333 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 334 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 335 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 336 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 337 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 338 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 339 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 340 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 341 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 342 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 343 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 344 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 345 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 346 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 347 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 348 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 349 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 350 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 351 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 352
GerritPathuis 1:d27a7e06c233 353 // @560 '.' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 354 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 355 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 356 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 357 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 358 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 359 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 360 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 361 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 362 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 363 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 364 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 365 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 366 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 367 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 368 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 369 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 370 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 371 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 372 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 373 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 374
GerritPathuis 1:d27a7e06c233 375 // @600 '/' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 376 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 377 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 378 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 379 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 380 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 381 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 382 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 383 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 384 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 385 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 386 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 387 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 388 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 389 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 390 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 391 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 392 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 393 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 394 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 395 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 396
GerritPathuis 1:d27a7e06c233 397 // @640 '0' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 398 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 399 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 400 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 401 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 402 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 403 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 404 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 405 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 406 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 407 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 408 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 409 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 410 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 411 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 412 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 413 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 414 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 415 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 416 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 417 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 418
GerritPathuis 1:d27a7e06c233 419 // @680 '1' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 420 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 421 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 422 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 423 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 424 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 425 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 426 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 427 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 428 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 429 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 430 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 431 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 432 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 433 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 434 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 435 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 436 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 437 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 438 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 439 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 440
GerritPathuis 1:d27a7e06c233 441 // @720 '2' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 442 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 443 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 444 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 445 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 446 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 447 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 448 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 449 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 450 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 451 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 452 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 453 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 454 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 455 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 456 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 457 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 458 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 459 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 460 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 461 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 462
GerritPathuis 1:d27a7e06c233 463 // @760 '3' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 464 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 465 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 466 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 467 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 468 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 469 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 470 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 471 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 472 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 473 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 474 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 475 0x60, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 476 0x7F, 0xC0, // #########
GerritPathuis 1:d27a7e06c233 477 0x3F, 0x80, // #######
GerritPathuis 1:d27a7e06c233 478 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 479 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 480 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 481 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 482 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 483 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 484
GerritPathuis 1:d27a7e06c233 485 // @800 '4' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 486 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 487 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 488 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 489 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 490 0x06, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 491 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 492 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 493 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 494 0x30, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 495 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 496 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 497 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 498 0x03, 0xE0, // #####
GerritPathuis 1:d27a7e06c233 499 0x03, 0xE0, // #####
GerritPathuis 1:d27a7e06c233 500 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 501 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 502 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 503 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 504 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 505 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 506
GerritPathuis 1:d27a7e06c233 507 // @840 '5' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 508 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 509 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 510 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 511 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 512 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 513 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 514 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 515 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 516 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 517 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 518 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 519 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 520 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 521 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 522 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 523 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 524 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 525 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 526 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 527 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 528
GerritPathuis 1:d27a7e06c233 529 // @880 '6' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 530 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 531 0x03, 0xE0, // #####
GerritPathuis 1:d27a7e06c233 532 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 533 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 534 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 535 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 536 0x37, 0x80, // ## ####
GerritPathuis 1:d27a7e06c233 537 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 538 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 539 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 540 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 541 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 542 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 543 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 544 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 545 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 546 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 547 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 548 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 549 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 550
GerritPathuis 1:d27a7e06c233 551 // @920 '7' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 552 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 553 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 554 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 555 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 556 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 557 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 558 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 559 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 560 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 561 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 562 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 563 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 564 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 565 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 566 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 567 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 568 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 569 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 570 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 571 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 572
GerritPathuis 1:d27a7e06c233 573 // @960 '8' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 574 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 575 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 576 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 577 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 578 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 579 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 580 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 581 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 582 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 583 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 584 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 585 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 586 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 587 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 588 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 589 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 590 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 591 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 592 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 593 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 594
GerritPathuis 1:d27a7e06c233 595 // @1000 '9' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 596 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 597 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 598 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 599 0x38, 0xC0, // ### ##
GerritPathuis 1:d27a7e06c233 600 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 601 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 602 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 603 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 604 0x0F, 0x60, // #### ##
GerritPathuis 1:d27a7e06c233 605 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 606 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 607 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 608 0x3F, 0x80, // #######
GerritPathuis 1:d27a7e06c233 609 0x3E, 0x00, // #####
GerritPathuis 1:d27a7e06c233 610 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 611 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 612 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 613 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 614 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 615 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 616
GerritPathuis 1:d27a7e06c233 617 // @1040 ':' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 618 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 619 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 620 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 621 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 622 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 623 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 624 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 625 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 626 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 627 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 628 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 629 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 630 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 631 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 632 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 633 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 634 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 635 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 636 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 637 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 638
GerritPathuis 1:d27a7e06c233 639 // @1080 ';' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 640 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 641 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 642 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 643 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 644 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 645 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 646 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 647 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 648 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 649 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 650 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 651 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 652 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 653 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 654 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 655 0x04, 0x00, // #
GerritPathuis 1:d27a7e06c233 656 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 657 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 658 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 659 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 660
GerritPathuis 1:d27a7e06c233 661 // @1120 '<' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 662 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 663 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 664 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 665 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 666 0x00, 0xF0, // ####
GerritPathuis 1:d27a7e06c233 667 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 668 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 669 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 670 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 671 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 672 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 673 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 674 0x00, 0xF0, // ####
GerritPathuis 1:d27a7e06c233 675 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 676 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 677 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 678 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 679 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 680 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 681 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 682
GerritPathuis 1:d27a7e06c233 683 // @1160 '=' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 684 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 685 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 686 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 687 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 688 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 689 0x7F, 0xF0, // ###########
GerritPathuis 1:d27a7e06c233 690 0x7F, 0xF0, // ###########
GerritPathuis 1:d27a7e06c233 691 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 692 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 693 0x7F, 0xF0, // ###########
GerritPathuis 1:d27a7e06c233 694 0x7F, 0xF0, // ###########
GerritPathuis 1:d27a7e06c233 695 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 696 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 697 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 698 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 699 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 700 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 701 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 702 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 703 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 704
GerritPathuis 1:d27a7e06c233 705 // @1200 '>' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 706 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 707 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 708 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 709 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 710 0x3C, 0x00, // ####
GerritPathuis 1:d27a7e06c233 711 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 712 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 713 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 714 0x00, 0x78, // ####
GerritPathuis 1:d27a7e06c233 715 0x00, 0xE0, // ###
GerritPathuis 1:d27a7e06c233 716 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 717 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 718 0x3C, 0x00, // ####
GerritPathuis 1:d27a7e06c233 719 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 720 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 721 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 722 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 723 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 724 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 725 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 726
GerritPathuis 1:d27a7e06c233 727 // @1240 '?' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 728 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 729 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 730 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 731 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 732 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 733 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 734 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 735 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 736 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 737 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 738 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 739 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 740 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 741 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 742 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 743 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 744 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 745 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 746 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 747 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 748
GerritPathuis 1:d27a7e06c233 749 // @1280 '@' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 750 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 751 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 752 0x0C, 0x80, // ## #
GerritPathuis 1:d27a7e06c233 753 0x08, 0x40, // # #
GerritPathuis 1:d27a7e06c233 754 0x10, 0x40, // # #
GerritPathuis 1:d27a7e06c233 755 0x10, 0x40, // # #
GerritPathuis 1:d27a7e06c233 756 0x11, 0xC0, // # ###
GerritPathuis 1:d27a7e06c233 757 0x12, 0x40, // # # #
GerritPathuis 1:d27a7e06c233 758 0x12, 0x40, // # # #
GerritPathuis 1:d27a7e06c233 759 0x12, 0x40, // # # #
GerritPathuis 1:d27a7e06c233 760 0x11, 0xC0, // # ###
GerritPathuis 1:d27a7e06c233 761 0x10, 0x00, // #
GerritPathuis 1:d27a7e06c233 762 0x08, 0x00, // #
GerritPathuis 1:d27a7e06c233 763 0x08, 0x40, // # #
GerritPathuis 1:d27a7e06c233 764 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 765 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 766 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 767 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 768 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 769 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 770
GerritPathuis 1:d27a7e06c233 771 // @1320 'A' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 772 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 773 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 774 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 775 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 776 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 777 0x06, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 778 0x06, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 779 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 780 0x0C, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 781 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 782 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 783 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 784 0x78, 0x78, // #### ####
GerritPathuis 1:d27a7e06c233 785 0x78, 0x78, // #### ####
GerritPathuis 1:d27a7e06c233 786 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 787 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 788 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 789 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 790 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 791 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 792
GerritPathuis 1:d27a7e06c233 793 // @1360 'B' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 794 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 795 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 796 0x3F, 0x80, // #######
GerritPathuis 1:d27a7e06c233 797 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 798 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 799 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 800 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 801 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 802 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 803 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 804 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 805 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 806 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 807 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 808 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 809 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 810 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 811 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 812 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 813 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 814
GerritPathuis 1:d27a7e06c233 815 // @1400 'C' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 816 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 817 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 818 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 819 0x0F, 0xF0, // ########
GerritPathuis 1:d27a7e06c233 820 0x1C, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 821 0x38, 0x30, // ### ##
GerritPathuis 1:d27a7e06c233 822 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 823 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 824 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 825 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 826 0x38, 0x30, // ### ##
GerritPathuis 1:d27a7e06c233 827 0x1C, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 828 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 829 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 830 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 831 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 832 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 833 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 834 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 835 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 836
GerritPathuis 1:d27a7e06c233 837 // @1440 'D' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 838 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 839 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 840 0x7F, 0x80, // ########
GerritPathuis 1:d27a7e06c233 841 0x7F, 0xC0, // #########
GerritPathuis 1:d27a7e06c233 842 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 843 0x30, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 844 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 845 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 846 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 847 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 848 0x30, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 849 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 850 0x7F, 0xC0, // #########
GerritPathuis 1:d27a7e06c233 851 0x7F, 0x80, // ########
GerritPathuis 1:d27a7e06c233 852 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 853 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 854 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 855 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 856 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 857 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 858
GerritPathuis 1:d27a7e06c233 859 // @1480 'E' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 860 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 861 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 862 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 863 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 864 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 865 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 866 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 867 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 868 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 869 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 870 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 871 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 872 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 873 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 874 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 875 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 876 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 877 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 878 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 879 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 880
GerritPathuis 1:d27a7e06c233 881 // @1520 'F' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 882 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 883 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 884 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 885 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 886 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 887 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 888 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 889 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 890 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 891 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 892 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 893 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 894 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 895 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 896 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 897 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 898 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 899 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 900 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 901 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 902
GerritPathuis 1:d27a7e06c233 903 // @1560 'G' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 904 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 905 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 906 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 907 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 908 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 909 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 910 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 911 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 912 0x31, 0xF8, // ## ######
GerritPathuis 1:d27a7e06c233 913 0x31, 0xF8, // ## ######
GerritPathuis 1:d27a7e06c233 914 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 915 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 916 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 917 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 918 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 919 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 920 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 921 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 922 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 923 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 924
GerritPathuis 1:d27a7e06c233 925 // @1600 'H' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 926 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 927 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 928 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 929 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 930 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 931 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 932 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 933 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 934 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 935 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 936 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 937 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 938 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 939 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 940 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 941 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 942 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 943 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 944 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 945 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 946
GerritPathuis 1:d27a7e06c233 947 // @1640 'I' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 948 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 949 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 950 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 951 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 952 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 953 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 954 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 955 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 956 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 957 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 958 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 959 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 960 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 961 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 962 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 963 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 964 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 965 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 966 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 967 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 968
GerritPathuis 1:d27a7e06c233 969 // @1680 'J' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 970 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 971 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 972 0x03, 0xF8, // #######
GerritPathuis 1:d27a7e06c233 973 0x03, 0xF8, // #######
GerritPathuis 1:d27a7e06c233 974 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 975 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 976 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 977 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 978 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 979 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 980 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 981 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 982 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 983 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 984 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 985 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 986 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 987 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 988 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 989 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 990
GerritPathuis 1:d27a7e06c233 991 // @1720 'K' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 992 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 993 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 994 0x3E, 0xF8, // ##### #####
GerritPathuis 1:d27a7e06c233 995 0x3E, 0xF8, // ##### #####
GerritPathuis 1:d27a7e06c233 996 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 997 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 998 0x1B, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 999 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1000 0x1D, 0x80, // ### ##
GerritPathuis 1:d27a7e06c233 1001 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1002 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1003 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1004 0x3E, 0x78, // ##### ####
GerritPathuis 1:d27a7e06c233 1005 0x3E, 0x38, // ##### ###
GerritPathuis 1:d27a7e06c233 1006 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1007 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1008 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1009 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1010 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1011 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1012
GerritPathuis 1:d27a7e06c233 1013 // @1760 'L' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1014 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1015 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1016 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1017 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1018 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1019 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1020 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1021 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1022 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1023 0x0C, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1024 0x0C, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1025 0x0C, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1026 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1027 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1028 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1029 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1030 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1031 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1032 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1033 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1034
GerritPathuis 1:d27a7e06c233 1035 // @1800 'M' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1036 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1037 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1038 0x78, 0x78, // #### ####
GerritPathuis 1:d27a7e06c233 1039 0x78, 0x78, // #### ####
GerritPathuis 1:d27a7e06c233 1040 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1041 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1042 0x34, 0xB0, // ## # # ##
GerritPathuis 1:d27a7e06c233 1043 0x37, 0xB0, // ## #### ##
GerritPathuis 1:d27a7e06c233 1044 0x37, 0xB0, // ## #### ##
GerritPathuis 1:d27a7e06c233 1045 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1046 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1047 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1048 0x7C, 0xF8, // ##### #####
GerritPathuis 1:d27a7e06c233 1049 0x7C, 0xF8, // ##### #####
GerritPathuis 1:d27a7e06c233 1050 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1051 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1052 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1053 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1054 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1055 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1056
GerritPathuis 1:d27a7e06c233 1057 // @1840 'N' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1058 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1059 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1060 0x39, 0xF0, // ### #####
GerritPathuis 1:d27a7e06c233 1061 0x3D, 0xF0, // #### #####
GerritPathuis 1:d27a7e06c233 1062 0x1C, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1063 0x1E, 0x60, // #### ##
GerritPathuis 1:d27a7e06c233 1064 0x1E, 0x60, // #### ##
GerritPathuis 1:d27a7e06c233 1065 0x1B, 0x60, // ## ## ##
GerritPathuis 1:d27a7e06c233 1066 0x1B, 0x60, // ## ## ##
GerritPathuis 1:d27a7e06c233 1067 0x19, 0xE0, // ## ####
GerritPathuis 1:d27a7e06c233 1068 0x19, 0xE0, // ## ####
GerritPathuis 1:d27a7e06c233 1069 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 1070 0x3E, 0xE0, // ##### ###
GerritPathuis 1:d27a7e06c233 1071 0x3E, 0x60, // ##### ##
GerritPathuis 1:d27a7e06c233 1072 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1073 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1074 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1075 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1076 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1077 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1078
GerritPathuis 1:d27a7e06c233 1079 // @1880 'O' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1080 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1081 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1082 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1083 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1084 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1085 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1086 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1087 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1088 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1089 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1090 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1091 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1092 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1093 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1094 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1095 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1096 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1097 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1098 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1099 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1100
GerritPathuis 1:d27a7e06c233 1101 // @1920 'P' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1102 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1103 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1104 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 1105 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1106 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1107 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1108 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1109 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1110 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1111 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 1112 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1113 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1114 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1115 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1116 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1117 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1118 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1119 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1120 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1121 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1122
GerritPathuis 1:d27a7e06c233 1123 // @1960 'Q' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1124 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1125 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1126 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1127 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1128 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1129 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1130 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1131 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1132 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1133 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1134 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1135 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1136 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1137 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1138 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 1139 0x0F, 0xF0, // ########
GerritPathuis 1:d27a7e06c233 1140 0x0C, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 1141 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1142 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1143 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1144
GerritPathuis 1:d27a7e06c233 1145 // @2000 'R' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1146 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1147 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1148 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 1149 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1150 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1151 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1152 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1153 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1154 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 1155 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 1156 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1157 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1158 0x3E, 0x38, // ##### ###
GerritPathuis 1:d27a7e06c233 1159 0x3E, 0x18, // ##### ##
GerritPathuis 1:d27a7e06c233 1160 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1161 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1162 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1163 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1164 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1165 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1166
GerritPathuis 1:d27a7e06c233 1167 // @2040 'S' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1168 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1169 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1170 0x0F, 0xB0, // ##### ##
GerritPathuis 1:d27a7e06c233 1171 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1172 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1173 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1174 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1175 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 1176 0x07, 0xE0, // ######
GerritPathuis 1:d27a7e06c233 1177 0x00, 0x70, // ###
GerritPathuis 1:d27a7e06c233 1178 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1179 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1180 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1181 0x37, 0xC0, // ## #####
GerritPathuis 1:d27a7e06c233 1182 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1183 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1184 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1185 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1186 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1187 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1188
GerritPathuis 1:d27a7e06c233 1189 // @2080 'T' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1190 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1191 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1192 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1193 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1194 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1195 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1196 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1197 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1198 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1199 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1200 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1201 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1202 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1203 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1204 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1205 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1206 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1207 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1208 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1209 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1210
GerritPathuis 1:d27a7e06c233 1211 // @2120 'U' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1212 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1213 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1214 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1215 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1216 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1217 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1218 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1219 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1220 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1221 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1222 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1223 0x1C, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1224 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1225 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1226 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1227 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1228 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1229 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1230 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1231 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1232
GerritPathuis 1:d27a7e06c233 1233 // @2160 'V' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1234 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1235 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1236 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1237 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1238 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1239 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1240 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1241 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1242 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1243 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1244 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1245 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1246 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1247 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1248 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1249 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1250 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1251 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1252 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1253 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1254
GerritPathuis 1:d27a7e06c233 1255 // @2200 'W' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1256 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1257 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1258 0x7C, 0x7C, // ##### #####
GerritPathuis 1:d27a7e06c233 1259 0x7C, 0x7C, // ##### #####
GerritPathuis 1:d27a7e06c233 1260 0x30, 0x18, // ## ##
GerritPathuis 1:d27a7e06c233 1261 0x33, 0x98, // ## ### ##
GerritPathuis 1:d27a7e06c233 1262 0x33, 0x98, // ## ### ##
GerritPathuis 1:d27a7e06c233 1263 0x33, 0x98, // ## ### ##
GerritPathuis 1:d27a7e06c233 1264 0x36, 0xD8, // ## ## ## ##
GerritPathuis 1:d27a7e06c233 1265 0x16, 0xD0, // # ## ## #
GerritPathuis 1:d27a7e06c233 1266 0x1C, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1267 0x1C, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1268 0x1C, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1269 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1270 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1271 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1272 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1273 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1274 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1275 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1276
GerritPathuis 1:d27a7e06c233 1277 // @2240 'X' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1278 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1279 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1280 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1281 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1282 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1283 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1284 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1285 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1286 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1287 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1288 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1289 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1290 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1291 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1292 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1293 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1294 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1295 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1296 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1297 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1298
GerritPathuis 1:d27a7e06c233 1299 // @2280 'Y' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1300 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1301 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1302 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1303 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1304 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1305 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1306 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1307 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1308 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1309 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1310 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1311 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1312 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1313 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1314 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1315 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1316 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1317 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1318 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1319 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1320
GerritPathuis 1:d27a7e06c233 1321 // @2320 'Z' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1322 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1323 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1324 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1325 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1326 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1327 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1328 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 1329 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1330 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1331 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1332 0x0C, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1333 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1334 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1335 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1336 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1337 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1338 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1339 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1340 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1341 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1342
GerritPathuis 1:d27a7e06c233 1343 // @2360 '[' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1344 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1345 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 1346 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 1347 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1348 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1349 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1350 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1351 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1352 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1353 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1354 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1355 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1356 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1357 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1358 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1359 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 1360 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 1361 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1362 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1363 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1364
GerritPathuis 1:d27a7e06c233 1365 // @2400 '\' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1366 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1367 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1368 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1369 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1370 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1371 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1372 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1373 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1374 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1375 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 1376 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 1377 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1378 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1379 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1380 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 1381 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 1382 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1383 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1384 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1385 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1386
GerritPathuis 1:d27a7e06c233 1387 // @2440 ']' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1388 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1389 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1390 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1391 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1392 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1393 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1394 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1395 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1396 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1397 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1398 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1399 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1400 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1401 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1402 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1403 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1404 0x0F, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1405 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1406 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1407 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1408
GerritPathuis 1:d27a7e06c233 1409 // @2480 '^' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1410 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1411 0x02, 0x00, // #
GerritPathuis 1:d27a7e06c233 1412 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1413 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1414 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1415 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1416 0x20, 0x20, // # #
GerritPathuis 1:d27a7e06c233 1417 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1418 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1419 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1420 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1421 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1422 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1423 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1424 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1425 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1426 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1427 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1428 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1429 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1430
GerritPathuis 1:d27a7e06c233 1431 // @2520 '_' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1432 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1433 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1434 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1435 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1436 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1437 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1438 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1439 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1440 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1441 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1442 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1443 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1444 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1445 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1446 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1447 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1448 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1449 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1450 0xFF, 0xFC, // ##############
GerritPathuis 1:d27a7e06c233 1451 0xFF, 0xFC, // ##############
GerritPathuis 1:d27a7e06c233 1452
GerritPathuis 1:d27a7e06c233 1453 // @2560 '`' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1454 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1455 0x04, 0x00, // #
GerritPathuis 1:d27a7e06c233 1456 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1457 0x00, 0x80, // #
GerritPathuis 1:d27a7e06c233 1458 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1459 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1460 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1461 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1462 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1463 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1464 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1465 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1466 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1467 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1468 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1469 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1470 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1471 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1472 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1473 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1474
GerritPathuis 1:d27a7e06c233 1475 // @2600 'a' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1476 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1477 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1478 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1479 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1480 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1481 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1482 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1483 0x00, 0x60, // ##
GerritPathuis 1:d27a7e06c233 1484 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 1485 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1486 0x38, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1487 0x30, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 1488 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1489 0x1F, 0x70, // ##### ###
GerritPathuis 1:d27a7e06c233 1490 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1491 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1492 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1493 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1494 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1495 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1496
GerritPathuis 1:d27a7e06c233 1497 // @2640 'b' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1498 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1499 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1500 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1501 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1502 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1503 0x37, 0x80, // ## ####
GerritPathuis 1:d27a7e06c233 1504 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1505 0x38, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1506 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1507 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1508 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1509 0x38, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1510 0x7F, 0xE0, // ##########
GerritPathuis 1:d27a7e06c233 1511 0x77, 0x80, // ### ####
GerritPathuis 1:d27a7e06c233 1512 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1513 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1514 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1515 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1516 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1517 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1518
GerritPathuis 1:d27a7e06c233 1519 // @2680 'c' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1520 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1521 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1522 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1523 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1524 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1525 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 1526 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1527 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1528 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1529 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1530 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1531 0x38, 0x30, // ### ##
GerritPathuis 1:d27a7e06c233 1532 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1533 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1534 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1535 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1536 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1537 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1538 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1539 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1540
GerritPathuis 1:d27a7e06c233 1541 // @2720 'd' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1542 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1543 0x00, 0x70, // ###
GerritPathuis 1:d27a7e06c233 1544 0x00, 0x70, // ###
GerritPathuis 1:d27a7e06c233 1545 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 1546 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 1547 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 1548 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1549 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1550 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1551 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1552 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1553 0x38, 0x70, // ### ###
GerritPathuis 1:d27a7e06c233 1554 0x1F, 0xF8, // ##########
GerritPathuis 1:d27a7e06c233 1555 0x07, 0xB8, // #### ###
GerritPathuis 1:d27a7e06c233 1556 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1557 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1558 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1559 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1560 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1561 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1562
GerritPathuis 1:d27a7e06c233 1563 // @2760 'e' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1564 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1565 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1566 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1567 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1568 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1569 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1570 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1571 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1572 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1573 0x3F, 0xF0, // ##########
GerritPathuis 1:d27a7e06c233 1574 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1575 0x18, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1576 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1577 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 1578 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1579 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1580 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1581 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1582 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1583 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1584
GerritPathuis 1:d27a7e06c233 1585 // @2800 'f' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1586 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1587 0x03, 0xF0, // ######
GerritPathuis 1:d27a7e06c233 1588 0x07, 0xF0, // #######
GerritPathuis 1:d27a7e06c233 1589 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1590 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1591 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1592 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1593 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1594 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1595 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1596 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1597 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1598 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1599 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1600 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1601 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1602 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1603 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1604 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1605 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1606
GerritPathuis 1:d27a7e06c233 1607 // @2840 'g' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1608 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1609 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1610 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1611 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1612 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1613 0x07, 0xB8, // #### ###
GerritPathuis 1:d27a7e06c233 1614 0x1F, 0xF8, // ##########
GerritPathuis 1:d27a7e06c233 1615 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1616 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1617 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1618 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1619 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1620 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1621 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 1622 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 1623 0x00, 0x70, // ###
GerritPathuis 1:d27a7e06c233 1624 0x0F, 0xE0, // #######
GerritPathuis 1:d27a7e06c233 1625 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1626 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1627 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1628
GerritPathuis 1:d27a7e06c233 1629 // @2880 'h' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1630 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1631 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1632 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1633 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1634 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1635 0x1B, 0xC0, // ## ####
GerritPathuis 1:d27a7e06c233 1636 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1637 0x1C, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1638 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1639 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1640 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1641 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1642 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1643 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1644 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1645 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1646 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1647 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1648 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1649 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1650
GerritPathuis 1:d27a7e06c233 1651 // @2920 'i' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1652 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1653 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1654 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1655 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1656 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1657 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1658 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1659 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1660 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1661 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1662 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1663 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1664 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1665 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1666 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1667 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1668 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1669 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1670 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1671 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1672
GerritPathuis 1:d27a7e06c233 1673 // @2960 'j' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1674 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1675 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1676 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1677 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1678 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1679 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 1680 0x1F, 0xC0, // #######
GerritPathuis 1:d27a7e06c233 1681 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1682 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1683 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1684 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1685 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1686 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1687 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1688 0x00, 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1689 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 1690 0x3F, 0x80, // #######
GerritPathuis 1:d27a7e06c233 1691 0x3F, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1692 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1693 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1694
GerritPathuis 1:d27a7e06c233 1695 // @3000 'k' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1696 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1697 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1698 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1699 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1700 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1701 0x1B, 0xE0, // ## #####
GerritPathuis 1:d27a7e06c233 1702 0x1B, 0xE0, // ## #####
GerritPathuis 1:d27a7e06c233 1703 0x1B, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1704 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1705 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1706 0x1B, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1707 0x19, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1708 0x39, 0xF0, // ### #####
GerritPathuis 1:d27a7e06c233 1709 0x39, 0xF0, // ### #####
GerritPathuis 1:d27a7e06c233 1710 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1711 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1712 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1713 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1714 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1715 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1716
GerritPathuis 1:d27a7e06c233 1717 // @3040 'l' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1718 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1719 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1720 0x1F, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1721 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1722 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1723 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1724 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1725 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1726 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1727 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1728 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1729 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1730 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1731 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1732 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1733 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1734 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1735 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1736 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1737 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1738
GerritPathuis 1:d27a7e06c233 1739 // @3080 'm' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1740 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1741 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1742 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1743 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1744 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1745 0x7E, 0xE0, // ###### ###
GerritPathuis 1:d27a7e06c233 1746 0x7F, 0xF0, // ###########
GerritPathuis 1:d27a7e06c233 1747 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1748 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1749 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1750 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1751 0x33, 0x30, // ## ## ##
GerritPathuis 1:d27a7e06c233 1752 0x7B, 0xB8, // #### ### ###
GerritPathuis 1:d27a7e06c233 1753 0x7B, 0xB8, // #### ### ###
GerritPathuis 1:d27a7e06c233 1754 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1755 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1756 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1757 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1758 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1759 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1760
GerritPathuis 1:d27a7e06c233 1761 // @3120 'n' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1762 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1763 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1764 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1765 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1766 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1767 0x3B, 0xC0, // ### ####
GerritPathuis 1:d27a7e06c233 1768 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1769 0x1C, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1770 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1771 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1772 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1773 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1774 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1775 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1776 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1777 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1778 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1779 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1780 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1781 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1782
GerritPathuis 1:d27a7e06c233 1783 // @3160 'o' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1784 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1785 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1786 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1787 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1788 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1789 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1790 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1791 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1792 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1793 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1794 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1795 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1796 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1797 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1798 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1799 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1800 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1801 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1802 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1803 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1804
GerritPathuis 1:d27a7e06c233 1805 // @3200 'p' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1806 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1807 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1808 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1809 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1810 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1811 0x77, 0x80, // ### ####
GerritPathuis 1:d27a7e06c233 1812 0x7F, 0xE0, // ##########
GerritPathuis 1:d27a7e06c233 1813 0x38, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1814 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1815 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1816 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1817 0x38, 0x60, // ### ##
GerritPathuis 1:d27a7e06c233 1818 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1819 0x37, 0x80, // ## ####
GerritPathuis 1:d27a7e06c233 1820 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1821 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1822 0x7C, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1823 0x7C, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1824 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1825 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1826
GerritPathuis 1:d27a7e06c233 1827 // @3240 'q' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1828 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1829 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1830 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1831 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1832 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1833 0x07, 0xB8, // #### ###
GerritPathuis 1:d27a7e06c233 1834 0x1F, 0xF8, // ##########
GerritPathuis 1:d27a7e06c233 1835 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1836 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1837 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1838 0x30, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1839 0x18, 0x70, // ## ###
GerritPathuis 1:d27a7e06c233 1840 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1841 0x07, 0xB0, // #### ##
GerritPathuis 1:d27a7e06c233 1842 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 1843 0x00, 0x30, // ##
GerritPathuis 1:d27a7e06c233 1844 0x00, 0xF8, // #####
GerritPathuis 1:d27a7e06c233 1845 0x00, 0xF8, // #####
GerritPathuis 1:d27a7e06c233 1846 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1847 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1848
GerritPathuis 1:d27a7e06c233 1849 // @3280 'r' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1850 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1851 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1852 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1853 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1854 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1855 0x3C, 0xE0, // #### ###
GerritPathuis 1:d27a7e06c233 1856 0x3D, 0xF0, // #### #####
GerritPathuis 1:d27a7e06c233 1857 0x0F, 0x30, // #### ##
GerritPathuis 1:d27a7e06c233 1858 0x0E, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1859 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1860 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1861 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1862 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 1863 0x3F, 0xC0, // ########
GerritPathuis 1:d27a7e06c233 1864 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1865 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1866 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1867 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1868 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1869 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1870
GerritPathuis 1:d27a7e06c233 1871 // @3320 's' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1872 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1873 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1874 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1875 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1876 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1877 0x07, 0xE0, // ######
GerritPathuis 1:d27a7e06c233 1878 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1879 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1880 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1881 0x0F, 0xC0, // ######
GerritPathuis 1:d27a7e06c233 1882 0x01, 0xE0, // ####
GerritPathuis 1:d27a7e06c233 1883 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1884 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 1885 0x1F, 0x80, // ######
GerritPathuis 1:d27a7e06c233 1886 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1887 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1888 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1889 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1890 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1891 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1892
GerritPathuis 1:d27a7e06c233 1893 // @3360 't' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1894 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1895 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1896 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1897 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1898 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1899 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1900 0x3F, 0xE0, // #########
GerritPathuis 1:d27a7e06c233 1901 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1902 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1903 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1904 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1905 0x0C, 0x30, // ## ##
GerritPathuis 1:d27a7e06c233 1906 0x0F, 0xF0, // ########
GerritPathuis 1:d27a7e06c233 1907 0x07, 0xC0, // #####
GerritPathuis 1:d27a7e06c233 1908 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1909 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1910 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1911 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1912 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1913 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1914
GerritPathuis 1:d27a7e06c233 1915 // @3400 'u' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1916 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1917 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1918 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1919 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1920 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1921 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1922 0x38, 0xE0, // ### ###
GerritPathuis 1:d27a7e06c233 1923 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1924 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1925 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1926 0x18, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1927 0x18, 0xE0, // ## ###
GerritPathuis 1:d27a7e06c233 1928 0x1F, 0xF0, // #########
GerritPathuis 1:d27a7e06c233 1929 0x0F, 0x70, // #### ###
GerritPathuis 1:d27a7e06c233 1930 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1931 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1932 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1933 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1934 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1935 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1936
GerritPathuis 1:d27a7e06c233 1937 // @3440 'v' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1938 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1939 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1940 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1941 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1942 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1943 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1944 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1945 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 1946 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1947 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1948 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1949 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 1950 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1951 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1952 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1953 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1954 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1955 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1956 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1957 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1958
GerritPathuis 1:d27a7e06c233 1959 // @3480 'w' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1960 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1961 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1962 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1963 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1964 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1965 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1966 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1967 0x32, 0x60, // ## # ##
GerritPathuis 1:d27a7e06c233 1968 0x32, 0x60, // ## # ##
GerritPathuis 1:d27a7e06c233 1969 0x37, 0xE0, // ## ######
GerritPathuis 1:d27a7e06c233 1970 0x1D, 0xC0, // ### ###
GerritPathuis 1:d27a7e06c233 1971 0x1D, 0xC0, // ### ###
GerritPathuis 1:d27a7e06c233 1972 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1973 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1974 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1975 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1976 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1977 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1978 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1979 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1980
GerritPathuis 1:d27a7e06c233 1981 // @3520 'x' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 1982 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1983 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1984 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1985 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1986 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1987 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1988 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1989 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1990 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1991 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1992 0x07, 0x80, // ####
GerritPathuis 1:d27a7e06c233 1993 0x0C, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 1994 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1995 0x3C, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 1996 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1997 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1998 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1999 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2000 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2001 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2002
GerritPathuis 1:d27a7e06c233 2003 // @3560 'y' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2004 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2005 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2006 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2007 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2008 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2009 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 2010 0x78, 0xF0, // #### ####
GerritPathuis 1:d27a7e06c233 2011 0x30, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 2012 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 2013 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 2014 0x0D, 0x80, // ## ##
GerritPathuis 1:d27a7e06c233 2015 0x0F, 0x80, // #####
GerritPathuis 1:d27a7e06c233 2016 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2017 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2018 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2019 0x0C, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2020 0x7F, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2021 0x7F, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2022 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2023 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2024
GerritPathuis 1:d27a7e06c233 2025 // @3600 'z' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2026 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2027 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2028 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2029 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2030 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2031 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 2032 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 2033 0x18, 0xC0, // ## ##
GerritPathuis 1:d27a7e06c233 2034 0x01, 0x80, // ##
GerritPathuis 1:d27a7e06c233 2035 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2036 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2037 0x0C, 0x60, // ## ##
GerritPathuis 1:d27a7e06c233 2038 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 2039 0x1F, 0xE0, // ########
GerritPathuis 1:d27a7e06c233 2040 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2041 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2042 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2043 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2044 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2045 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2046
GerritPathuis 1:d27a7e06c233 2047 // @3640 '{' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2048 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2049 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 2050 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 2051 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2052 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2053 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2054 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2055 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2056 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2057 0x0E, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2058 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2059 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2060 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2061 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2062 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2063 0x03, 0xC0, // ####
GerritPathuis 1:d27a7e06c233 2064 0x01, 0xC0, // ###
GerritPathuis 1:d27a7e06c233 2065 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2066 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2067 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2068
GerritPathuis 1:d27a7e06c233 2069 // @3680 '|' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2070 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2071 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2072 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2073 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2074 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2075 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2076 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2077 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2078 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2079 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2080 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2081 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2082 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2083 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2084 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2085 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2086 0x03, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2087 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2088 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2089 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2090
GerritPathuis 1:d27a7e06c233 2091 // @3720 '}' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2092 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2093 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2094 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2095 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2096 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2097 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2098 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2099 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2100 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2101 0x03, 0x80, // ###
GerritPathuis 1:d27a7e06c233 2102 0x07, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2103 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2104 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2105 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2106 0x06, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2107 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2108 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2109 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2110 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2111 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2112
GerritPathuis 1:d27a7e06c233 2113 // @3760 '~' (14 pixels wide)
GerritPathuis 1:d27a7e06c233 2114 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2115 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2116 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2117 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2118 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2119 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2120 0x0E, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2121 0x3F, 0x30, // ###### ##
GerritPathuis 1:d27a7e06c233 2122 0x33, 0xF0, // ## ######
GerritPathuis 1:d27a7e06c233 2123 0x01, 0xE0, // ####
GerritPathuis 1:d27a7e06c233 2124 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2125 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2126 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2127 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2128 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2129 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2130 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2131 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2132 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2133 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2134 };
GerritPathuis 1:d27a7e06c233 2135
GerritPathuis 1:d27a7e06c233 2136
GerritPathuis 1:d27a7e06c233 2137 sFONT Font20 = {
GerritPathuis 1:d27a7e06c233 2138 Font20_Table,
GerritPathuis 1:d27a7e06c233 2139 14, /* Width */
GerritPathuis 1:d27a7e06c233 2140 20, /* Height */
GerritPathuis 1:d27a7e06c233 2141 };
GerritPathuis 1:d27a7e06c233 2142
GerritPathuis 1:d27a7e06c233 2143 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
GerritPathuis 1:d27a7e06c233 2144