PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers palZXSpec.cpp Source File

palZXSpec.cpp

00001 #include "PokittoPalettes.h"
00002 
00003 const unsigned char paletteZXSpec[48] = {
00004 0x00,0x00,0x00, //black
00005 0x1C,0x1C,0x1C, //  ANOTHER BLACK - POINTLESS.  IVE MADE A VERY DARK GREY INSTEAD.
00006 0x00,0x00,0xC0, //blue d
00007 0x00,0x00,0xFF, //blue l
00008 
00009 0xC0,0x00,0x00, // red d
00010 0xFF,0x00,0x00, // red l
00011 0xC0,0x00,0xC0, // magenta d
00012 0xFF,0x00,0xFF, // magenta l
00013 
00014 0x00,0xC0,0x00, // green d
00015 0x00,0xFF,0x00, // green l
00016 0x00,0xC0,0xC0, // cyan d
00017 0x00,0xFF,0xFF, // cyan l
00018 
00019 0xC0,0xC0,0x00, // yellow d
00020 0xFF,0xFF,0x00, // yellow l
00021 0xC0,0xC0,0xC0, // grey
00022 0xFF,0xFF,0xFF  // white
00023 };
00024