tamagotchip — flash your own firmware

A tiny virtual computer, the kind you'd flash with custom firmware yourself — write a little screen-drawing script in the box, hit FLASH, and watch it boot on the display. No real hardware, no real risk, just a fake little e-ink brain you get to program.

TAMAGOTCHIP // MODEL T-1
idle.
firmware instruction set (20×8 screen, one command per line)
CLEARwipe the screen blank
TEXT x y textwrite text starting at column x, row y
PIXEL x y [ch]set a single cell (default block char)
RECT x y w hdraw a box outline, width w, height h
FILL x y w h [ch]fill a rectangle solid
WAIT mssnapshot the screen as a frame, hold it, then keep going
# commentignored

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.