TAMAGOTCHIP // MODEL T-1
idle.
firmware instruction set (20×8 screen, one command per line)
| CLEAR | wipe the screen blank |
| TEXT x y text | write text starting at column x, row y |
| PIXEL x y [ch] | set a single cell (default block char) |
| RECT x y w h | draw a box outline, width w, height h |
| FILL x y w h [ch] | fill a rectangle solid |
| WAIT ms | snapshot the screen as a frame, hold it, then keep going |
| # comment | ignored |
The firmware runs top to bottom once, then loops forever from the top — so a few CLEAR / draw / WAIT blocks in a row make a little boot animation. x runs 0–19, y runs 0–7.