Stores 64 colors for use by the tiles. 0x420 620 Tile Mapping For each 8x8 region of the screen, identifies which tile, palette, and transform to use. 0xC40 Unknown/Varies Tiles Consecutive 8x8 4bbp tiles for use in the tile mapping.
Create a checkerboard 8x8 matrix using the tile function (★☆☆) Z = np.tile(np.array([[0,1],[1,0]]), (4,4)) print(Z) 20. Normalize a 5x5 random matrix (★☆☆)