Pixel Font Maker 2.x Online Help


Microchip Library Fonts

Pixel Font Maker for Microchip is a font converter tool, which helps you conveniently convert any fonts installed in your Windows OS into a Microchip Library bitmap font, which can be easily integrated into your MLA based project.

Pixel Font Maker for Microchip can make all the 3 kinds of fonts to be used in MLA:


Download the sample fonts

The sample fonts are created with: Font name: Arial, Font style: Regular, Font size: 10 pt, MLA Version 3.06, Compiler Type: C32/XC32
It includes Standard type fonts and Extended type fonts: ( both rendered as Monochrome 1-bpp)

Please click the below button to download the sample fonts: sample_fonts_microchip.zip

Sample Hex file

Sample C file

/*********************************************************************
 * This file is created by Pixel Font Maker for Microchip v2.0       *
 *                         PixFonter Technology.                     *
 *                         http://www.pixfonter.net/                 *
 *                         support@pixfonter.net                     *
 *                                                                   *
 * Processor:  PIC32MX                                               *
 * Compiler:   MPLAB C32/XC32                                        *
 * Linker:     MPLAB LINK32/XC32                                     *
 *                                                                   *
 * File name: Arial16hExtC.c                                         *
 * Font name: Arial                                                  *
 * Font width: 0 (proportional font)                                 *
 * Font height: 16                                                   *
 *                                                                   *
 * Create time: 03:35 01-21-2015                                     *
 *********************************************************************/
#include 
#include "HardwareProfile.h"

extern const char __Arial16hExt[] __attribute__((aligned(2)));

const FONT_FLASH Arial16hExt =
{
	(FLASH | COMP_NONE),
	__Arial16hExt
};

const char __Arial16hExt[] __attribute__((aligned(2))) = 
{
    //////////////////////////////////////////
    // FONT HEADER
    //////////////////////////////////////////
    0x00,			// Font ID
    0x01,			// Font Information: Extended 1-bpp font, none rotated
    0x20, 0x00,		// First Character ID
    0x7E, 0x00,		// Last Character ID
    0x10, 0x00,		// Height

    //////////////////////////////////////////
    // CHARACTER TABLE
    //////////////////////////////////////////

    0x7C, 0x04, 0x00, 0x00, 		// Character=0x0020(   32)    Offset=0x0000047C
    0x04, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x0D, 0x00,                 		// y-position
    0x7D, 0x04, 0x00, 0x00, 		// Character=0x0021(   33)    Offset=0x0000047D
    0x03, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x87, 0x04, 0x00, 0x00, 		// Character=0x0022(   34)    Offset=0x00000487
    0x05, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x8A, 0x04, 0x00, 0x00, 		// Character=0x0023(   35)    Offset=0x0000048A
    0x07, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x94, 0x04, 0x00, 0x00, 		// Character=0x0024(   36)    Offset=0x00000494
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x9F, 0x04, 0x00, 0x00, 		// Character=0x0025(   37)    Offset=0x0000049F
    0x0C, 0x00,                 		// cursor advance
    0x0A, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xB3, 0x04, 0x00, 0x00, 		// Character=0x0026(   38)    Offset=0x000004B3
    0x09, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xBD, 0x04, 0x00, 0x00, 		// Character=0x0027(   39)    Offset=0x000004BD
    0x02, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xC0, 0x04, 0x00, 0x00, 		// Character=0x0028(   40)    Offset=0x000004C0
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xCD, 0x04, 0x00, 0x00, 		// Character=0x0029(   41)    Offset=0x000004CD
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xDA, 0x04, 0x00, 0x00, 		// Character=0x002A(   42)    Offset=0x000004DA
    0x05, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xDE, 0x04, 0x00, 0x00, 		// Character=0x002B(   43)    Offset=0x000004DE
    0x08, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x05, 0x00,                 		// y-position
    0xE5, 0x04, 0x00, 0x00, 		// Character=0x002C(   44)    Offset=0x000004E5
    0x04, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x02, 0x00,                 		// x-position
    0x0C, 0x00,                 		// y-position
    0xE8, 0x04, 0x00, 0x00, 		// Character=0x002D(   45)    Offset=0x000004E8
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x09, 0x00,                 		// y-position
    0xE9, 0x04, 0x00, 0x00, 		// Character=0x002E(   46)    Offset=0x000004E9
    0x04, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x0C, 0x00,                 		// y-position
    0xEA, 0x04, 0x00, 0x00, 		// Character=0x002F(   47)    Offset=0x000004EA
    0x04, 0x00,                 		// cursor advance
    0x04, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xF4, 0x04, 0x00, 0x00, 		// Character=0x0030(   48)    Offset=0x000004F4
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xFE, 0x04, 0x00, 0x00, 		// Character=0x0031(   49)    Offset=0x000004FE
    0x07, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x08, 0x05, 0x00, 0x00, 		// Character=0x0032(   50)    Offset=0x00000508
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x12, 0x05, 0x00, 0x00, 		// Character=0x0033(   51)    Offset=0x00000512
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x1C, 0x05, 0x00, 0x00, 		// Character=0x0034(   52)    Offset=0x0000051C
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x26, 0x05, 0x00, 0x00, 		// Character=0x0035(   53)    Offset=0x00000526
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x30, 0x05, 0x00, 0x00, 		// Character=0x0036(   54)    Offset=0x00000530
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x3A, 0x05, 0x00, 0x00, 		// Character=0x0037(   55)    Offset=0x0000053A
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x44, 0x05, 0x00, 0x00, 		// Character=0x0038(   56)    Offset=0x00000544
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x4E, 0x05, 0x00, 0x00, 		// Character=0x0039(   57)    Offset=0x0000054E
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x58, 0x05, 0x00, 0x00, 		// Character=0x003A(   58)    Offset=0x00000558
    0x04, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x5F, 0x05, 0x00, 0x00, 		// Character=0x003B(   59)    Offset=0x0000055F
    0x04, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x68, 0x05, 0x00, 0x00, 		// Character=0x003C(   60)    Offset=0x00000568
    0x08, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x05, 0x00,                 		// y-position
    0x6F, 0x05, 0x00, 0x00, 		// Character=0x003D(   61)    Offset=0x0000056F
    0x08, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x73, 0x05, 0x00, 0x00, 		// Character=0x003E(   62)    Offset=0x00000573
    0x08, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x05, 0x00,                 		// y-position
    0x7A, 0x05, 0x00, 0x00, 		// Character=0x003F(   63)    Offset=0x0000057A
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x84, 0x05, 0x00, 0x00, 		// Character=0x0040(   64)    Offset=0x00000584
    0x0D, 0x00,                 		// cursor advance
    0x0C, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x9E, 0x05, 0x00, 0x00, 		// Character=0x0041(   65)    Offset=0x0000059E
    0x09, 0x00,                 		// cursor advance
    0x09, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xB2, 0x05, 0x00, 0x00, 		// Character=0x0042(   66)    Offset=0x000005B2
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xBC, 0x05, 0x00, 0x00, 		// Character=0x0043(   67)    Offset=0x000005BC
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xC6, 0x05, 0x00, 0x00, 		// Character=0x0044(   68)    Offset=0x000005C6
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xD0, 0x05, 0x00, 0x00, 		// Character=0x0045(   69)    Offset=0x000005D0
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xDA, 0x05, 0x00, 0x00, 		// Character=0x0046(   70)    Offset=0x000005DA
    0x08, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xE4, 0x05, 0x00, 0x00, 		// Character=0x0047(   71)    Offset=0x000005E4
    0x0A, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xEE, 0x05, 0x00, 0x00, 		// Character=0x0048(   72)    Offset=0x000005EE
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xF8, 0x05, 0x00, 0x00, 		// Character=0x0049(   73)    Offset=0x000005F8
    0x03, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x02, 0x06, 0x00, 0x00, 		// Character=0x004A(   74)    Offset=0x00000602
    0x06, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x0C, 0x06, 0x00, 0x00, 		// Character=0x004B(   75)    Offset=0x0000060C
    0x09, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x16, 0x06, 0x00, 0x00, 		// Character=0x004C(   76)    Offset=0x00000616
    0x07, 0x00,                 		// cursor advance
    0x06, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x20, 0x06, 0x00, 0x00, 		// Character=0x004D(   77)    Offset=0x00000620
    0x0B, 0x00,                 		// cursor advance
    0x09, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x34, 0x06, 0x00, 0x00, 		// Character=0x004E(   78)    Offset=0x00000634
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x3E, 0x06, 0x00, 0x00, 		// Character=0x004F(   79)    Offset=0x0000063E
    0x0A, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x48, 0x06, 0x00, 0x00, 		// Character=0x0050(   80)    Offset=0x00000648
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x52, 0x06, 0x00, 0x00, 		// Character=0x0051(   81)    Offset=0x00000652
    0x0A, 0x00,                 		// cursor advance
    0x08, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x5D, 0x06, 0x00, 0x00, 		// Character=0x0052(   82)    Offset=0x0000065D
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x67, 0x06, 0x00, 0x00, 		// Character=0x0053(   83)    Offset=0x00000667
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x71, 0x06, 0x00, 0x00, 		// Character=0x0054(   84)    Offset=0x00000671
    0x07, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x7B, 0x06, 0x00, 0x00, 		// Character=0x0055(   85)    Offset=0x0000067B
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x85, 0x06, 0x00, 0x00, 		// Character=0x0056(   86)    Offset=0x00000685
    0x09, 0x00,                 		// cursor advance
    0x0B, 0x00,                 		// width
    0xFF, 0xFF,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x99, 0x06, 0x00, 0x00, 		// Character=0x0057(   87)    Offset=0x00000699
    0x0D, 0x00,                 		// cursor advance
    0x0D, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xAD, 0x06, 0x00, 0x00, 		// Character=0x0058(   88)    Offset=0x000006AD
    0x07, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xB7, 0x06, 0x00, 0x00, 		// Character=0x0059(   89)    Offset=0x000006B7
    0x09, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xC1, 0x06, 0x00, 0x00, 		// Character=0x005A(   90)    Offset=0x000006C1
    0x07, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xCB, 0x06, 0x00, 0x00, 		// Character=0x005B(   91)    Offset=0x000006CB
    0x04, 0x00,                 		// cursor advance
    0x02, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xD8, 0x06, 0x00, 0x00, 		// Character=0x005C(   92)    Offset=0x000006D8
    0x04, 0x00,                 		// cursor advance
    0x04, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xE2, 0x06, 0x00, 0x00, 		// Character=0x005D(   93)    Offset=0x000006E2
    0x04, 0x00,                 		// cursor advance
    0x02, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xEF, 0x06, 0x00, 0x00, 		// Character=0x005E(   94)    Offset=0x000006EF
    0x05, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x04, 0x00,                 		// y-position
    0xF4, 0x06, 0x00, 0x00, 		// Character=0x005F(   95)    Offset=0x000006F4
    0x07, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x0F, 0x00,                 		// y-position
    0xF5, 0x06, 0x00, 0x00, 		// Character=0x0060(   96)    Offset=0x000006F5
    0x04, 0x00,                 		// cursor advance
    0x02, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xF7, 0x06, 0x00, 0x00, 		// Character=0x0061(   97)    Offset=0x000006F7
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xFE, 0x06, 0x00, 0x00, 		// Character=0x0062(   98)    Offset=0x000006FE
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x08, 0x07, 0x00, 0x00, 		// Character=0x0063(   99)    Offset=0x00000708
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x0F, 0x07, 0x00, 0x00, 		// Character=0x0064(  100)    Offset=0x0000070F
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x19, 0x07, 0x00, 0x00, 		// Character=0x0065(  101)    Offset=0x00000719
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x20, 0x07, 0x00, 0x00, 		// Character=0x0066(  102)    Offset=0x00000720
    0x03, 0x00,                 		// cursor advance
    0x04, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x2A, 0x07, 0x00, 0x00, 		// Character=0x0067(  103)    Offset=0x0000072A
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x34, 0x07, 0x00, 0x00, 		// Character=0x0068(  104)    Offset=0x00000734
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x3E, 0x07, 0x00, 0x00, 		// Character=0x0069(  105)    Offset=0x0000073E
    0x03, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x48, 0x07, 0x00, 0x00, 		// Character=0x006A(  106)    Offset=0x00000748
    0x03, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0xFF, 0xFF,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x55, 0x07, 0x00, 0x00, 		// Character=0x006B(  107)    Offset=0x00000755
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x5F, 0x07, 0x00, 0x00, 		// Character=0x006C(  108)    Offset=0x0000075F
    0x03, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x69, 0x07, 0x00, 0x00, 		// Character=0x006D(  109)    Offset=0x00000769
    0x0B, 0x00,                 		// cursor advance
    0x09, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x77, 0x07, 0x00, 0x00, 		// Character=0x006E(  110)    Offset=0x00000777
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x7E, 0x07, 0x00, 0x00, 		// Character=0x006F(  111)    Offset=0x0000077E
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x85, 0x07, 0x00, 0x00, 		// Character=0x0070(  112)    Offset=0x00000785
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x8F, 0x07, 0x00, 0x00, 		// Character=0x0071(  113)    Offset=0x0000078F
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0x99, 0x07, 0x00, 0x00, 		// Character=0x0072(  114)    Offset=0x00000799
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xA0, 0x07, 0x00, 0x00, 		// Character=0x0073(  115)    Offset=0x000007A0
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xA7, 0x07, 0x00, 0x00, 		// Character=0x0074(  116)    Offset=0x000007A7
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x04, 0x00,                 		// y-position
    0xB0, 0x07, 0x00, 0x00, 		// Character=0x0075(  117)    Offset=0x000007B0
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xB7, 0x07, 0x00, 0x00, 		// Character=0x0076(  118)    Offset=0x000007B7
    0x05, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xBE, 0x07, 0x00, 0x00, 		// Character=0x0077(  119)    Offset=0x000007BE
    0x09, 0x00,                 		// cursor advance
    0x09, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xCC, 0x07, 0x00, 0x00, 		// Character=0x0078(  120)    Offset=0x000007CC
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xD3, 0x07, 0x00, 0x00, 		// Character=0x0079(  121)    Offset=0x000007D3
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xDD, 0x07, 0x00, 0x00, 		// Character=0x007A(  122)    Offset=0x000007DD
    0x07, 0x00,                 		// cursor advance
    0x05, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x06, 0x00,                 		// y-position
    0xE4, 0x07, 0x00, 0x00, 		// Character=0x007B(  123)    Offset=0x000007E4
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xF1, 0x07, 0x00, 0x00, 		// Character=0x007C(  124)    Offset=0x000007F1
    0x03, 0x00,                 		// cursor advance
    0x01, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0xFD, 0x07, 0x00, 0x00, 		// Character=0x007D(  125)    Offset=0x000007FD
    0x04, 0x00,                 		// cursor advance
    0x03, 0x00,                 		// width
    0x01, 0x00,                 		// x-position
    0x03, 0x00,                 		// y-position
    0x0A, 0x08, 0x00, 0x00, 		// Character=0x007E(  126)    Offset=0x0000080A
    0x08, 0x00,                 		// cursor advance
    0x07, 0x00,                 		// width
    0x00, 0x00,                 		// x-position
    0x07, 0x00,                 		// y-position

    //////////////////////////////////////////
    // FONT BITMAP
    //////////////////////////////////////////

    /*****************************************
     * Character = 0x0020 (32)
     *****************************************/
    0x00, 		// .

    /*****************************************
     * Character = 0x0021 (33)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x00, 		// .
    0x80, 		// #

    /*****************************************
     * Character = 0x0022 (34)
     *****************************************/
    0xA0, 		// #.#
    0xA0, 		// #.#
    0xA0, 		// #.#

    /*****************************************
     * Character = 0x0023 (35)
     *****************************************/
    0x12, 		// ...#..#.
    0x12, 		// ...#..#.
    0x22, 		// ..#...#.
    0xFF, 		// ########
    0x24, 		// ..#..#..
    0x24, 		// ..#..#..
    0xFF, 		// ########
    0x48, 		// .#..#...
    0x48, 		// .#..#...
    0x48, 		// .#..#...

    /*****************************************
     * Character = 0x0024 (36)
     *****************************************/
    0x70, 		// .###.
    0xA8, 		// #.#.#
    0xA0, 		// #.#..
    0xA0, 		// #.#..
    0xE0, 		// ###..
    0x38, 		// ..###
    0x28, 		// ..#.#
    0xA8, 		// #.#.#
    0xA8, 		// #.#.#
    0x70, 		// .###.
    0x20, 		// ..#..

    /*****************************************
     * Character = 0x0025 (37)
     *****************************************/
    0x61, 0x00, 		// .##....#..
    0x92, 0x00, 		// #..#..#...
    0x92, 0x00, 		// #..#..#...
    0x94, 0x00, 		// #..#.#....
    0x64, 0x00, 		// .##..#....
    0x09, 0x80, 		// ....#..##.
    0x0A, 0x40, 		// ....#.#..#
    0x12, 0x40, 		// ...#..#..#
    0x12, 0x40, 		// ...#..#..#
    0x21, 0x80, 		// ..#....##.

    /*****************************************
     * Character = 0x0026 (38)
     *****************************************/
    0x30, 		// ..##....
    0x48, 		// .#..#...
    0x48, 		// .#..#...
    0x48, 		// .#..#...
    0x30, 		// ..##....
    0x60, 		// .##.....
    0x92, 		// #..#..#.
    0x8A, 		// #...#.#.
    0x8C, 		// #...##..
    0x73, 		// .###..##

    /*****************************************
     * Character = 0x0027 (39)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x0028 (40)
     *****************************************/
    0x20, 		// ..#
    0x40, 		// .#.
    0x40, 		// .#.
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x40, 		// .#.
    0x40, 		// .#.
    0x20, 		// ..#

    /*****************************************
     * Character = 0x0029 (41)
     *****************************************/
    0x80, 		// #..
    0x40, 		// .#.
    0x40, 		// .#.
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x40, 		// .#.
    0x40, 		// .#.
    0x80, 		// #..

    /*****************************************
     * Character = 0x002A (42)
     *****************************************/
    0x20, 		// ..#..
    0xF8, 		// #####
    0x20, 		// ..#..
    0x50, 		// .#.#.

    /*****************************************
     * Character = 0x002B (43)
     *****************************************/
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0xFE, 		// #######
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...

    /*****************************************
     * Character = 0x002C (44)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x002D (45)
     *****************************************/
    0xE0, 		// ###

    /*****************************************
     * Character = 0x002E (46)
     *****************************************/
    0x80, 		// #

    /*****************************************
     * Character = 0x002F (47)
     *****************************************/
    0x10, 		// ...#
    0x10, 		// ...#
    0x20, 		// ..#.
    0x20, 		// ..#.
    0x20, 		// ..#.
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..
    0x80, 		// #...
    0x80, 		// #...

    /*****************************************
     * Character = 0x0030 (48)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x78, 		// .####.

    /*****************************************
     * Character = 0x0031 (49)
     *****************************************/
    0x20, 		// ..#
    0x60, 		// .##
    0xA0, 		// #.#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#

    /*****************************************
     * Character = 0x0032 (50)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x04, 		// .....#
    0x04, 		// .....#
    0x04, 		// .....#
    0x08, 		// ....#.
    0x10, 		// ...#..
    0x20, 		// ..#...
    0x40, 		// .#....
    0xFC, 		// ######

    /*****************************************
     * Character = 0x0033 (51)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x04, 		// .....#
    0x04, 		// .....#
    0x38, 		// ..###.
    0x04, 		// .....#
    0x04, 		// .....#
    0x04, 		// .....#
    0x84, 		// #....#
    0x78, 		// .####.

    /*****************************************
     * Character = 0x0034 (52)
     *****************************************/
    0x08, 		// ....#.
    0x18, 		// ...##.
    0x18, 		// ...##.
    0x28, 		// ..#.#.
    0x28, 		// ..#.#.
    0x48, 		// .#..#.
    0x48, 		// .#..#.
    0xFC, 		// ######
    0x08, 		// ....#.
    0x08, 		// ....#.

    /*****************************************
     * Character = 0x0035 (53)
     *****************************************/
    0x7C, 		// .#####
    0x40, 		// .#....
    0x40, 		// .#....
    0x80, 		// #.....
    0xF8, 		// #####.
    0x84, 		// #....#
    0x04, 		// .....#
    0x04, 		// .....#
    0x84, 		// #....#
    0x78, 		// .####.

    /*****************************************
     * Character = 0x0036 (54)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x80, 		// #.....
    0x80, 		// #.....
    0xB8, 		// #.###.
    0xC4, 		// ##...#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x78, 		// .####.

    /*****************************************
     * Character = 0x0037 (55)
     *****************************************/
    0xFC, 		// ######
    0x08, 		// ....#.
    0x08, 		// ....#.
    0x10, 		// ...#..
    0x10, 		// ...#..
    0x20, 		// ..#...
    0x20, 		// ..#...
    0x40, 		// .#....
    0x40, 		// .#....
    0x40, 		// .#....

    /*****************************************
     * Character = 0x0038 (56)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x78, 		// .####.
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x78, 		// .####.

    /*****************************************
     * Character = 0x0039 (57)
     *****************************************/
    0x78, 		// .####.
    0x84, 		// #....#
    0x84, 		// #....#
    0x84, 		// #....#
    0x8C, 		// #...##
    0x74, 		// .###.#
    0x04, 		// .....#
    0x04, 		// .....#
    0x88, 		// #...#.
    0x70, 		// .###..

    /*****************************************
     * Character = 0x003A (58)
     *****************************************/
    0x80, 		// #
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x80, 		// #

    /*****************************************
     * Character = 0x003B (59)
     *****************************************/
    0x80, 		// #
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x00, 		// .
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x003C (60)
     *****************************************/
    0x04, 		// .....#
    0x18, 		// ...##.
    0x60, 		// .##...
    0x80, 		// #.....
    0x60, 		// .##...
    0x18, 		// ...##.
    0x04, 		// .....#

    /*****************************************
     * Character = 0x003D (61)
     *****************************************/
    0xFE, 		// #######
    0x00, 		// .......
    0x00, 		// .......
    0xFE, 		// #######

    /*****************************************
     * Character = 0x003E (62)
     *****************************************/
    0x80, 		// #.....
    0x60, 		// .##...
    0x18, 		// ...##.
    0x04, 		// .....#
    0x18, 		// ...##.
    0x60, 		// .##...
    0x80, 		// #.....

    /*****************************************
     * Character = 0x003F (63)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x88, 		// #...#
    0x08, 		// ....#
    0x10, 		// ...#.
    0x20, 		// ..#..
    0x40, 		// .#...
    0x40, 		// .#...
    0x00, 		// .....
    0x40, 		// .#...

    /*****************************************
     * Character = 0x0040 (64)
     *****************************************/
    0x0F, 0x80, 		// ....#####...
    0x30, 0x40, 		// ..##.....#..
    0x40, 0x20, 		// .#........#.
    0x4E, 0x90, 		// .#..###.#..#
    0x91, 0x90, 		// #..#...##..#
    0xA0, 0x90, 		// #.#.....#..#
    0xA1, 0x10, 		// #.#....#...#
    0xA1, 0x20, 		// #.#....#..#.
    0xA3, 0x20, 		// #.#...##..#.
    0x9D, 0xC0, 		// #..###.###..
    0x40, 0x10, 		// .#.........#
    0x20, 0x60, 		// ..#......##.
    0x1F, 0x80, 		// ...######...

    /*****************************************
     * Character = 0x0041 (65)
     *****************************************/
    0x08, 0x00, 		// ....#....
    0x14, 0x00, 		// ...#.#...
    0x14, 0x00, 		// ...#.#...
    0x14, 0x00, 		// ...#.#...
    0x22, 0x00, 		// ..#...#..
    0x22, 0x00, 		// ..#...#..
    0x7F, 0x00, 		// .#######.
    0x41, 0x00, 		// .#.....#.
    0x80, 0x80, 		// #.......#
    0x80, 0x80, 		// #.......#

    /*****************************************
     * Character = 0x0042 (66)
     *****************************************/
    0xFC, 		// ######.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0xFC, 		// ######.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0xFC, 		// ######.

    /*****************************************
     * Character = 0x0043 (67)
     *****************************************/
    0x38, 		// ..###..
    0x44, 		// .#...#.
    0x82, 		// #.....#
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0x82, 		// #.....#
    0x44, 		// .#...#.
    0x38, 		// ..###..

    /*****************************************
     * Character = 0x0044 (68)
     *****************************************/
    0xF8, 		// #####..
    0x84, 		// #....#.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x84, 		// #....#.
    0xF8, 		// #####..

    /*****************************************
     * Character = 0x0045 (69)
     *****************************************/
    0xFE, 		// #######
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0xFE, 		// #######
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0xFE, 		// #######

    /*****************************************
     * Character = 0x0046 (70)
     *****************************************/
    0xFC, 		// ######
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0xF8, 		// #####.
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....

    /*****************************************
     * Character = 0x0047 (71)
     *****************************************/
    0x3C, 		// ..####..
    0x42, 		// .#....#.
    0x81, 		// #......#
    0x80, 		// #.......
    0x80, 		// #.......
    0x8F, 		// #...####
    0x81, 		// #......#
    0x81, 		// #......#
    0x42, 		// .#....#.
    0x3C, 		// ..####..

    /*****************************************
     * Character = 0x0048 (72)
     *****************************************/
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0xFE, 		// #######
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#

    /*****************************************
     * Character = 0x0049 (73)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x004A (74)
     *****************************************/
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x88, 		// #...#
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x004B (75)
     *****************************************/
    0x81, 		// #......#
    0x82, 		// #.....#.
    0x84, 		// #....#..
    0x88, 		// #...#...
    0x90, 		// #..#....
    0xB0, 		// #.##....
    0xC8, 		// ##..#...
    0x84, 		// #....#..
    0x82, 		// #.....#.
    0x81, 		// #......#

    /*****************************************
     * Character = 0x004C (76)
     *****************************************/
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0x80, 		// #.....
    0xFC, 		// ######

    /*****************************************
     * Character = 0x004D (77)
     *****************************************/
    0x80, 0x80, 		// #.......#
    0xC1, 0x80, 		// ##.....##
    0xC1, 0x80, 		// ##.....##
    0xA2, 0x80, 		// #.#...#.#
    0xA2, 0x80, 		// #.#...#.#
    0x94, 0x80, 		// #..#.#..#
    0x94, 0x80, 		// #..#.#..#
    0x94, 0x80, 		// #..#.#..#
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#

    /*****************************************
     * Character = 0x004E (78)
     *****************************************/
    0x82, 		// #.....#
    0xC2, 		// ##....#
    0xA2, 		// #.#...#
    0xA2, 		// #.#...#
    0x92, 		// #..#..#
    0x92, 		// #..#..#
    0x8A, 		// #...#.#
    0x8A, 		// #...#.#
    0x86, 		// #....##
    0x82, 		// #.....#

    /*****************************************
     * Character = 0x004F (79)
     *****************************************/
    0x3C, 		// ..####..
    0x42, 		// .#....#.
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x42, 		// .#....#.
    0x3C, 		// ..####..

    /*****************************************
     * Character = 0x0050 (80)
     *****************************************/
    0xFC, 		// ######.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0xFC, 		// ######.
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......
    0x80, 		// #......

    /*****************************************
     * Character = 0x0051 (81)
     *****************************************/
    0x3C, 		// ..####..
    0x42, 		// .#....#.
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x81, 		// #......#
    0x8D, 		// #...##.#
    0x42, 		// .#....#.
    0x3D, 		// ..####.#
    0x00, 		// ........

    /*****************************************
     * Character = 0x0052 (82)
     *****************************************/
    0xFC, 		// ######.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0xFC, 		// ######.
    0x88, 		// #...#..
    0x84, 		// #....#.
    0x84, 		// #....#.
    0x82, 		// #.....#

    /*****************************************
     * Character = 0x0053 (83)
     *****************************************/
    0x7C, 		// .#####.
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x80, 		// #......
    0x70, 		// .###...
    0x0C, 		// ....##.
    0x02, 		// ......#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x7C, 		// .#####.

    /*****************************************
     * Character = 0x0054 (84)
     *****************************************/
    0xFE, 		// #######
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...

    /*****************************************
     * Character = 0x0055 (85)
     *****************************************/
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x82, 		// #.....#
    0x44, 		// .#...#.
    0x38, 		// ..###..

    /*****************************************
     * Character = 0x0056 (86)
     *****************************************/
    0x40, 0x40, 		// .#.......#.
    0x40, 0x40, 		// .#.......#.
    0x20, 0x80, 		// ..#.....#..
    0x20, 0x80, 		// ..#.....#..
    0x11, 0x00, 		// ...#...#...
    0x11, 0x00, 		// ...#...#...
    0x0A, 0x00, 		// ....#.#....
    0x0A, 0x00, 		// ....#.#....
    0x04, 0x00, 		// .....#.....
    0x04, 0x00, 		// .....#.....

    /*****************************************
     * Character = 0x0057 (87)
     *****************************************/
    0x82, 0x08, 		// #.....#.....#
    0x85, 0x08, 		// #....#.#....#
    0x45, 0x10, 		// .#...#.#...#.
    0x45, 0x10, 		// .#...#.#...#.
    0x45, 0x10, 		// .#...#.#...#.
    0x28, 0xA0, 		// ..#.#...#.#..
    0x28, 0xA0, 		// ..#.#...#.#..
    0x28, 0xA0, 		// ..#.#...#.#..
    0x10, 0x40, 		// ...#.....#...
    0x10, 0x40, 		// ...#.....#...

    /*****************************************
     * Character = 0x0058 (88)
     *****************************************/
    0x82, 		// #.....#
    0x44, 		// .#...#.
    0x44, 		// .#...#.
    0x28, 		// ..#.#..
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x28, 		// ..#.#..
    0x44, 		// .#...#.
    0x44, 		// .#...#.
    0x82, 		// #.....#

    /*****************************************
     * Character = 0x0059 (89)
     *****************************************/
    0x82, 		// #.....#
    0x44, 		// .#...#.
    0x44, 		// .#...#.
    0x28, 		// ..#.#..
    0x28, 		// ..#.#..
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x10, 		// ...#...

    /*****************************************
     * Character = 0x005A (90)
     *****************************************/
    0x7E, 		// .######
    0x04, 		// .....#.
    0x08, 		// ....#..
    0x08, 		// ....#..
    0x10, 		// ...#...
    0x10, 		// ...#...
    0x20, 		// ..#....
    0x20, 		// ..#....
    0x40, 		// .#.....
    0xFE, 		// #######

    /*****************************************
     * Character = 0x005B (91)
     *****************************************/
    0xC0, 		// ##
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0x80, 		// #.
    0xC0, 		// ##

    /*****************************************
     * Character = 0x005C (92)
     *****************************************/
    0x80, 		// #...
    0x80, 		// #...
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..
    0x20, 		// ..#.
    0x20, 		// ..#.
    0x20, 		// ..#.
    0x10, 		// ...#
    0x10, 		// ...#

    /*****************************************
     * Character = 0x005D (93)
     *****************************************/
    0xC0, 		// ##
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0x40, 		// .#
    0xC0, 		// ##

    /*****************************************
     * Character = 0x005E (94)
     *****************************************/
    0x20, 		// ..#..
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x88, 		// #...#

    /*****************************************
     * Character = 0x005F (95)
     *****************************************/
    0xFE, 		// #######

    /*****************************************
     * Character = 0x0060 (96)
     *****************************************/
    0x80, 		// #.
    0x40, 		// .#

    /*****************************************
     * Character = 0x0061 (97)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x08, 		// ....#
    0x78, 		// .####
    0x88, 		// #...#
    0x98, 		// #..##
    0x68, 		// .##.#

    /*****************************************
     * Character = 0x0062 (98)
     *****************************************/
    0x80, 		// #....
    0x80, 		// #....
    0x80, 		// #....
    0xB0, 		// #.##.
    0xC8, 		// ##..#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0xF0, 		// ####.

    /*****************************************
     * Character = 0x0063 (99)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x80, 		// #....
    0x80, 		// #....
    0x80, 		// #....
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x0064 (100)
     *****************************************/
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#
    0x68, 		// .##.#
    0x98, 		// #..##
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x78, 		// .####

    /*****************************************
     * Character = 0x0065 (101)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x88, 		// #...#
    0xF8, 		// #####
    0x80, 		// #....
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x0066 (102)
     *****************************************/
    0x30, 		// ..##
    0x40, 		// .#..
    0x40, 		// .#..
    0xE0, 		// ###.
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..
    0x40, 		// .#..

    /*****************************************
     * Character = 0x0067 (103)
     *****************************************/
    0x68, 		// .##.#
    0x98, 		// #..##
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x98, 		// #..##
    0x68, 		// .##.#
    0x08, 		// ....#
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x0068 (104)
     *****************************************/
    0x80, 		// #....
    0x80, 		// #....
    0x80, 		// #....
    0xB0, 		// #.##.
    0xC8, 		// ##..#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#

    /*****************************************
     * Character = 0x0069 (105)
     *****************************************/
    0x80, 		// #
    0x00, 		// .
    0x00, 		// .
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x006A (106)
     *****************************************/
    0x20, 		// ..#
    0x00, 		// ...
    0x00, 		// ...
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0x20, 		// ..#
    0xC0, 		// ##.

    /*****************************************
     * Character = 0x006B (107)
     *****************************************/
    0x80, 		// #....
    0x80, 		// #....
    0x80, 		// #....
    0x88, 		// #...#
    0x90, 		// #..#.
    0xA0, 		// #.#..
    0xE0, 		// ###..
    0x90, 		// #..#.
    0x90, 		// #..#.
    0x88, 		// #...#

    /*****************************************
     * Character = 0x006C (108)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x006D (109)
     *****************************************/
    0xB3, 0x00, 		// #.##..##.
    0xCC, 0x80, 		// ##..##..#
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#

    /*****************************************
     * Character = 0x006E (110)
     *****************************************/
    0xB0, 		// #.##.
    0xC8, 		// ##..#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#

    /*****************************************
     * Character = 0x006F (111)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x0070 (112)
     *****************************************/
    0xB0, 		// #.##.
    0xC8, 		// ##..#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0xC8, 		// ##..#
    0xB0, 		// #.##.
    0x80, 		// #....
    0x80, 		// #....
    0x80, 		// #....

    /*****************************************
     * Character = 0x0071 (113)
     *****************************************/
    0x68, 		// .##.#
    0x98, 		// #..##
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x98, 		// #..##
    0x68, 		// .##.#
    0x08, 		// ....#
    0x08, 		// ....#
    0x08, 		// ....#

    /*****************************************
     * Character = 0x0072 (114)
     *****************************************/
    0xA0, 		// #.#
    0xC0, 		// ##.
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..
    0x80, 		// #..

    /*****************************************
     * Character = 0x0073 (115)
     *****************************************/
    0x70, 		// .###.
    0x88, 		// #...#
    0x80, 		// #....
    0x70, 		// .###.
    0x08, 		// ....#
    0x88, 		// #...#
    0x70, 		// .###.

    /*****************************************
     * Character = 0x0074 (116)
     *****************************************/
    0x40, 		// .#.
    0x40, 		// .#.
    0xE0, 		// ###
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x60, 		// .##

    /*****************************************
     * Character = 0x0075 (117)
     *****************************************/
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x88, 		// #...#
    0x78, 		// .####

    /*****************************************
     * Character = 0x0076 (118)
     *****************************************/
    0x88, 		// #...#
    0x88, 		// #...#
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x20, 		// ..#..
    0x20, 		// ..#..

    /*****************************************
     * Character = 0x0077 (119)
     *****************************************/
    0x88, 0x80, 		// #...#...#
    0x88, 0x80, 		// #...#...#
    0x55, 0x00, 		// .#.#.#.#.
    0x55, 0x00, 		// .#.#.#.#.
    0x55, 0x00, 		// .#.#.#.#.
    0x22, 0x00, 		// ..#...#..
    0x22, 0x00, 		// ..#...#..

    /*****************************************
     * Character = 0x0078 (120)
     *****************************************/
    0x88, 		// #...#
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x20, 		// ..#..
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x88, 		// #...#

    /*****************************************
     * Character = 0x0079 (121)
     *****************************************/
    0x88, 		// #...#
    0x88, 		// #...#
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x50, 		// .#.#.
    0x20, 		// ..#..
    0x20, 		// ..#..
    0x20, 		// ..#..
    0x20, 		// ..#..
    0xC0, 		// ##...

    /*****************************************
     * Character = 0x007A (122)
     *****************************************/
    0xF8, 		// #####
    0x10, 		// ...#.
    0x10, 		// ...#.
    0x20, 		// ..#..
    0x40, 		// .#...
    0x40, 		// .#...
    0xF8, 		// #####

    /*****************************************
     * Character = 0x007B (123)
     *****************************************/
    0x20, 		// ..#
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x80, 		// #..
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x20, 		// ..#

    /*****************************************
     * Character = 0x007C (124)
     *****************************************/
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #
    0x80, 		// #

    /*****************************************
     * Character = 0x007D (125)
     *****************************************/
    0x80, 		// #..
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x20, 		// ..#
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x40, 		// .#.
    0x80, 		// #..

    /*****************************************
     * Character = 0x007E (126)
     *****************************************/
    0x72, 		// .###..#
    0x9E, 		// #..####
    0x00, 		// .......

};
		

Sample Hex file

:020000040000FA
:080810004D43485089B1B84086
:020000040000FA
:20000000000120007E0010007C0400000400010000000D007D040000030001000100030016
:200020008704000005000300010003008A04000007000800000003009404000007000500E5
:20004000010003009F0400000C000A0001000300B30400000900080001000300BD04000052
:200060000200010001000300C00400000400030001000300CD0400000400030000000300CF
:20008000DA0400000500050000000300DE0400000800070001000500E50400000400010090
:2000A00002000C00E80400000400030000000900E90400000400010001000C00EA04000049
:2000C0000400040000000300F40400000700060000000300FE0400000700030001000300FD
:2000E0000805000007000600000003001205000007000600000003001C050000070006008E
:20010000000003002605000007000600000003003005000007000600000003003A0500001D
:2001200007000600000003004405000007000600000003004E0500000700060000000300F3
:200140005805000004000100010006005F050000040001000100060068050000080006004B
:20016000010005006F05000008000700000006007305000008000600010005007A050000E5
:200180000700050001000300840500000D000C00000003009E0500000900090000000300F2
:2001A000B20500000900070001000300BC0500000900070001000300C605000009000700C4
:2001C00001000300D00500000900070001000300DA0500000800060001000300E405000058
:2001E0000A00080001000300EE0500000900070001000300F80500000300010001000300DD
:200200000206000006000500000003000C0600000900080001000300160600000700060078
:2002200001000300200600000B000900010003003406000009000700010003003E060000EA
:200240000A00080001000300480600000900070001000300520600000A00080001000300B8
:200260005D0600000900070001000300670600000900070001000300710600000700070001
:20028000000003007B06000009000700010003008506000009000B00FFFF03009906000087
:2002A0000D000D0000000300AD0600000700070000000300B706000009000700010003008C
:2002C000C10600000700070000000300CB0600000400020001000300D80600000400040085
:2002E00000000300E20600000400020001000300EF0600000500050000000400F40600000C
:200300000700070000000F00F50600000400020001000300F70600000700050001000600AB
:20032000FE06000007000500010003000807000007000500010006000F0700000700050065
:20034000010003001907000007000500010006002007000003000400000003002A07000004
:2003600007000500010006003407000007000500010003003E0700000300010001000300D2
:200380004807000003000300FFFF03005507000007000500010003005F0700000300010031
:2003A00001000300690700000B000900010006007707000007000500010006007E07000098
:2003C00007000500010006008507000007000500010006008F0700000700050001000600C2
:2003E000990700000400030001000600A00700000700050001000600A707000004000300E0
:2004000000000400B00700000700050001000600B70700000500050000000600BE0700007B
:200420000900090000000600CC0700000700050001000600D30700000700050001000600D1
:20044000DD0700000700050001000600E40700000400030000000300F107000003000100B4
:2004600001000300FD07000004000300010003000A080000080007000000070000808080C1
:2004800080808080800080A0A0A0121222FF2424FF48484870A8A0A0E03828A8A87020613F
:2004A00000920092009400640009800A40124012402180304848483060928A8C73808080D5
:2004C000204040808080808080804040208040402020202020202040408020F820501010D4
:2004E00010FE101010808080E080101020202040404080807884848484848484847820600E
:20050000A020202020202020788404040408102040FC78840404380404048478081818283B
:20052000284848FC08087C404080F8840404847878848080B8C484848478FC080810102033
:200540002040404078848484788484848478788484848C7404048870800000000000808033
:20056000000000000080808004186080601804FE0000FE80601804186080708888081020DB
:20058000404000400F80304040204E909190A090A110A120A3209DC0401020601F80080004
:2005A000140014001400220022007F00410080808080FC828282FC82828282FC38448280FB
:2005C000808080824438F88482828282828284F8FE808080FE80808080FEFC808080F8802B
:2005E000808080803C428180808F8181423C82828282FE828282828280808080808080805D
:200600008080080808080808088888708182848890B0C8848281808080808080808080FC08
:200620008080C180C180A280A2809480948094808880888082C2A2A292928A8A86823C4262
:20064000818181818181423CFC82828282FC808080803C4281818181818D423D00FC828207
:200660008282FC888484827C828280700C0282827CFE101010101010101010828282828252
:2006800082828244384040404020802080110011000A000A00040004008208850845104529
:2006A00010451028A028A028A01040104082444428101028444482824444282810101010BF
:2006C000107E0408081010202040FEC08080808080808080808080C08080404040202020BA
:2006E0001010C04040404040404040404040C02050505088FE804070880878889868808044
:2007000080B0C888888888F07088808080887008080868988888888878708888F8808870C1
:20072000304040E040404040404068988888889868088870808080B0C888888888888000F1
:200740000080808080808080200000202020202020202020C08080808890A0E090908880D9
:20076000808080808080808080B300CC8088808880888088808880B0C888888888887088BA
:200780008888888870B0C8888888C8B080808068988888889868080808A0C0808080808031
:2007A000708880700888704040E04040404040608888888888887888885050502020888061
:2007C00088805500550055002200220088505020505088888850505020202020C0F8101006
:2007E000204040F82040404040408040404040402080808080808080808080808080404021
:0D08000040404020404040404080729E003B
:00000001FF

		


Copyright © 2016 by PixFonter Technology.