Type Definition chip8_base::Display

source · []
pub type Display = [[u8; 64]; 32];
Expand description

The Interpreter’s representation of the CHIP-8 display. The display is 64x32 pixels, each pixel being either on or off, represented by a 0 or 1, respectively.