TETERI
History of the genre
The Kill Screen: When the Game Runs Out of Numbers
Push a 1989 program past what its authors tested and the arithmetic starts producing nonsense, then it crashes.
A kill screen is the point at which a game stops working correctly because it has reached a state its code never anticipated. Not a designed ending — an arithmetic failure.
How the NES version breaks
The 1989 version was written on the assumption nobody would get very far. Level 29 was effectively unreachable for two decades, so what lay beyond it was never seriously tested.
When players finally got there, the game began behaving oddly. Colour palettes, derived from the level number, ran off the end of their table and started pulling bytes intended as something else — producing garish, unreadable combinations where pieces and background can be nearly the same colour.
Keep going and it gets worse. Past level 155, depending on exactly what the counters do, the program can crash outright: it jumps somewhere it should not and stops.
The 2023 crash
In December 2023, Willis Gibson, thirteen, playing as Blue Scuti, reached that crash live. It was widely reported as the first time a human had done it — previously it had only been reached by programs playing the game.
Getting there requires surviving many levels of unreadable palettes at maximum gravity, using the rolling technique, without a hold slot or a decent preview. The run took about forty minutes.
Why anyone cares
Because the crash is a boundary of a different kind. Most games end when you lose. This one ends when you exceed what its authors could conceive of, and the program gives up before you do.
There is something genuinely moving about that. A programmer in 1989 wrote a level counter, reasonably assuming nobody would ever push it that far, and thirty-four years later a teenager found the edge of that assumption on a livestream.
Does TETERI have one?
No, and not because of any special care. Levels here are computed rather than looked up in a table, so nothing runs off the end of anything, and the gravity curve flattens instead of dividing by zero. The stack will bury you long before the arithmetic gets uncomfortable.
Kill screens are artefacts of a specific era: fixed tables, tight memory, and the reasonable belief that no human would ever get that far.
Read next
- Who Invented Tetris?Alexey Pajitnov wrote the original in 1984 at a Soviet research institute, on a computer that could not draw graphics.
- Where the Name "Tetris" Comes FromA Greek numeral prefix welded to the name of a racquet sport, because the author liked both.
- The First Version Ran on a Computer That Could Not DrawThe Elektronika 60 had no graphics mode, so the original pieces were built out of punctuation marks.
- How the Game Escaped the Soviet UnionIt spread by informal copying, reached Hungary, and was picked up by a Western agent before anyone had signed anything.
- The Song Everyone Associates With Falling BlocksA nineteenth-century Russian folk tune about a pedlar, and how it became the most recognisable video game music ever written.
- Lock Delay: The Half-Second That Saves Your RunA landed piece does not lock immediately, and nudging it restarts the clock, up to a limit.