Games That Were Never Meant to End
An arcade game of the early 1980s does not have a final level, because a final level would be a design error. The machine exists to take coins, and a player who finishes the game stops feeding it. So the games loop: the levels repeat, the speed increases, the enemies grow more aggressive, and the sequence continues indefinitely — or at least, that was the intention.
The intention was not tested. Nobody at Namco in 1980 was seriously contemplating what would happen to Pac-Man on level 256, because reaching level 256 requires playing a perfect or near-perfect game for several hours without losing a life to any significant degree, and the number of humans capable of doing that was, for years, zero. The design assumed infinity. The hardware did not provide it.
Pac-Man, Level 256
Pac-Man stores its level counter in a single byte — an eight-bit integer, capable of holding values from 0 to 255. On level 256, the game attempts to increment a value already at its maximum, and the byte overflows and wraps to zero.
What follows is not a crash but something far stranger. The routine that draws the fruit display at the bottom of the screen uses that counter to decide how many fruit to render. With the counter corrupted, it reads far past the end of its intended data and begins interpreting unrelated memory as drawing instructions, vomiting garbage across the right-hand half of the screen. The maze is destroyed. The dots on that side are gone.
And this is the cruel part: the level is not merely ugly, it is arithmetically impossible. The corrupted right half contains just nine edible dots. The intact left half holds 122. That gives a maximum of 131 dots available to eat — and the game requires 244 to clear the level. There is no route, no trick and no degree of skill that can finish it. Pac-Man does not end; it becomes unwinnable, which is a different and more unsettling thing.
Donkey Kong, Level 22
Donkey Kong reaches the same wall by a different road. The game calculates the bonus timer for a stage by multiplying the level number by ten and storing the result. At level 22, that calculation wants to produce 260 — and 260 does not fit in an unsigned eight-bit variable, which tops out at 255. The value wraps around, and the game awards the player a timer of four seconds.
Four seconds is not enough to do anything. Mario dies, repeatedly, as the timer expires almost immediately on each attempt, and the run ends. It is a purer failure than Pac-Man's — no visual corruption, no garbled tiles, just a number that quietly became wrong and a game that is now over whether or not it says so.
The level 22 kill screen became the defining boundary of competitive Donkey Kong. Because no one can pass it, the only remaining contest is who can accumulate the highest score before arriving there, which turns a game with no ending into a game with a fixed and universally shared finish line — one imposed not by a designer but by the width of a variable.
The Machine Showing Through
What makes kill screens compelling, decades later, is that they are the one moment when the machine stops pretending. For hours, Pac-Man is a yellow creature in a maze; at level 256, it is unmistakably a program manipulating bytes, and the bytes have run out. The fiction does not degrade gracefully — it shatters, and behind it is raw memory being drawn to the screen as though it were art.
They also constitute a strange kind of achievement. Reaching a kill screen is not something the designers rewarded, anticipated, or in any sense endorsed; it is a place the game was never supposed to be able to go, discovered by players operating far beyond the skill ceiling anyone had imagined. The kill screen is the point at which a player has beaten not just the game but the assumptions of the people who wrote it — and their reward is to watch it fall apart.
Later games patched such errors, used wider integers, or simply capped the level counter. The kill screen belongs to a specific era: one in which memory was scarce enough that a single byte was worth economising on, and in which nobody seriously believed a human being would ever play well enough to find out.