maurice 1.3.0

Maurice, a Thomson MO5 emulator
Documentation
pub(crate) const COLOR_DEPTH: usize = 3;
pub(super) type Color = [u8; COLOR_DEPTH];

pub(crate) static PALETTE: [Color; 16] = [
    [0x00, 0x00, 0x00],
    [0xF0, 0x00, 0x00],
    [0x00, 0xF0, 0x00],
    [0xF0, 0xF0, 0x00],
    [0x00, 0x00, 0xF0],
    [0xF0, 0x00, 0xF0],
    [0x00, 0xF0, 0xF0],
    [0xF0, 0xF0, 0xF0],
    [0x63, 0x63, 0x63],
    [0xF0, 0x63, 0x63],
    [0x63, 0xF0, 0x63],
    [0xF0, 0xF0, 0x63],
    [0x00, 0x63, 0xF0],
    [0xF0, 0x63, 0xF0],
    [0x63, 0xF0, 0xF0],
    [0xF0, 0x63, 0x00],
];