I made a Tiny Computer Interpreter on SmileBASIC, but I don't think I did the VRAM correctly
Root / Programming Questions / [.]
answerCreated:
As Perska said, it's 32 registers (v0-v31), and each register is 32 bits. Each bit represents a pixel. v0 represents the top row, v31 represents the bottom row. The first bit of v0 represents the topmost, leftmost pixel on the screen. The last bit in v0 represents the topmost, rightmost pixel. If the bit is 1, the pixel is "set". If it's 0, it's "not set".