pub type Display = [[u8; 64]; 32];
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.
0
1