Skip to content

Guides · The last board

What is a kill screen?

The glitch that ends the game

A kill screen is the point where a classic video game becomes unplayable — not by design, but because a bug ends it. Most famous kill screens happen when a level counter stored in a single byte overflows, corrupting the display or the rules until the game can no longer be completed.

The phrase belongs to the golden age of the arcade, when games were built to take your coin, not to be completed. Designers assumed nobody would ever play long enough for the counters to matter. The best players proved them wrong — and found the exact spot where the program ran out of numbers. This guide explains that spot: what breaks, why it breaks, and how a broken screen became a trophy.

01 · Why it happens

The villain in almost every famous kill screen is the same one: a counter kept in a single byte.

Inside an early-eighties arcade board, the level number lives in one byte — eight bits, eight switches that are either on or off. Eight bits can express exactly 256 values, 0 through 255, and not one more. The counter behaves like a car’s odometer with too few digits: at 11111111 the display is full, and one more level rolls every column back to zero.

Nothing has broken physically. The hardware is running perfectly; this is the level counter breaking, not the machine. But every routine that reads the counter is now being told this is level zero — a level that never existed — and code squeezed into a few kilobytes had no spare room for “what if the impossible happens”. So a fruit-drawing routine paints garbage, timer arithmetic collapses, enemies never spawn. The machine keeps obeying a number that no longer makes sense.

02 · The famous kill screens

Three cabinets and one light gun made the legend. Each breaks in its own characteristic way.

  1. 01

    Pac-Man · level 256

    Namco, 1980

    The most famous kill screen of all — the “split screen”. Play 255 boards cleanly and the 256th arrives half-broken: the left side of the maze intact, the right side a spray of letters, digits and fragments of sprite data. Internally, the fruit-drawing routine adds 1 to the level counter, gets 0, and — with no case written for zero — tries to draw 256 fruit icons, reading far past its fruit table and painting raw memory across half the playfield. The corrupted board no longer holds enough dots to clear it, so the game can never advance. We’ve written about why this machine grips the brain so hard in our Pac-Man psychology deep-dive.

    Cause — a one-byte level counter, plus a fruit routine with no case for zero.

    3,333,360The perfect score — the machine’s hard ceiling

  2. 02

    Donkey Kong · level 22

    Nintendo, 1981

    Board 117 — level 22-1 — is where Donkey Kong stops. The bonus timer is worked out as 10 × (level + 4): at level 22 that’s 260, too big for the byte that stores it, so it wraps to 4 and the board begins with a bonus of just 400. The timer kills Jumpman within seconds, barely past the second girder, no matter how well you play. The 2007 documentary The King of Kong: A Fistful of Quarters built its whole drama around reaching this screen — getting there at all is the proof of a world-class player.

    Cause — the timer maths 10 × (22 + 4) = 260 overflows a byte to 4.

  3. 03

    Duck Hunt · round 100

    Nintendo, 1984

    The NES light-gun classic keeps its round counter to two digits. Clear round 99 and the display loops to round 0 — and the game’s behaviour breaks with it. Ducks streak across the screen at absurd speeds, jump position mid-flight or fail to appear at all, while the dog laughs at misses you never had a chance to take. The round cannot reliably be completed, so the session ends in giggling static.

    Cause — a two-digit round counter wraps from 99 back to 0.

  4. 04

    Galaga · stage 256

    Namco, 1981

    Galaga’s stage counter is a byte too. Finish stage 255 and the next is announced as stage 0 — and what happens depends on the cabinet’s difficulty DIP switches. On some settings the game crashes outright; on others stage 0 plays as a mangled hybrid of a normal stage and a challenging stage; on others no enemies ever arrive, leaving your fighter alone in space with nothing left to shoot. The behaviour varying cabinet to cabinet is exactly what unhandled overflow looks like.

    Cause — the stage byte rolls to 0; the outcome depends on the DIP-switch settings.

03 · Kill screen, crash, or ending?

Not every abrupt stop qualifies. The retro community keeps three ideas separate, and the distinction is worth having.

Kill screen

Unintended but deterministic. The same broken state arrives at the same point in every game, and the machine keeps running — you just cannot progress. Pac-Man’s level 256 and Donkey Kong’s level 22 are the archetypes.

Crash

The program halts or freezes outright — chaos rather than a repeatable wall. NES Tetris famously ends this way: push it far enough and it locks up, which is why “beating Tetris” means crashing it.

The loop

No bug at all. Games like Space Invaders and Asteroids were designed with no ending — the waves simply repeat, harder and faster, forever. An intended endlessness is not a kill screen; it’s the business model.

04 · The kill screen today

The King of Kong put the Donkey Kong kill screen in front of a mainstream audience and fixed the term in the culture: reaching one became the accepted mark of mastery — the point where skill has beaten everything except the arithmetic. Competitive score-chasing still treats kill screens as the finish line, and a “max-out” Pac-Man run means arriving at the split screen with a perfect 3,333,360 and nothing left behind.

The frontier still moves. In February 2025 the speedrunner Kosmic cleared Donkey Kong’s level 22-1 for the first time in the game’s 44 years — using an emulator, frame-perfect inputs and a broken-ladder climbing glitch — a laboratory demonstration rather than a coin-op miracle, but proof the wall had a crack in it. And the word has escaped the arcade entirely: people now reach for “kill screen” to describe any hard stop — the end of a format, a career, a console generation.

05 · Kill screen FAQ

What causes a kill screen?

Almost every classic kill screen comes down to integer overflow. Early games stored values such as the level number in a single byte, which can only count from 0 to 255. When play pushes a counter past that limit it wraps back to zero, feeding impossible values into routines that were never written to handle them — corrupting graphics, timers or enemy logic until the game cannot continue.

Can you beat a kill screen?

Usually not by fair play — that is what makes it a kill screen. The bug leaves the game in a state that cannot be completed: Pac-Man’s level 256 no longer holds enough dots to clear the board, and Donkey Kong’s level 22 timer expires before the stage can be climbed. Donkey Kong’s kill screen was finally cleared in February 2025, but only in an emulator using frame-perfect inputs and a ladder-climbing glitch — no one has done it by hand on original hardware.

What is the Pac-Man kill screen score?

A perfect Pac-Man game scores 3,333,360 points. That means clearing all 255 normal boards while eating every dot, energiser, bonus fruit and all four ghosts on every energiser, then collecting the handful of points still reachable on the intact left half of the corrupted level 256. The figure is a hard ceiling — the machine has nothing more to give.

Do modern games have kill screens?

True kill screens are rare today because modern hardware is not squeezed into single-byte counters, and games ship with designed endings and post-release patches. The closest modern equivalents live in the retro competitive scene — most famously NES Tetris, which thirteen-year-old Willis Gibson pushed to a crash at level 157 in December 2023, the first person ever to do so.

Is a kill screen the same as a crash?

No. A kill screen is deterministic: the same broken state appears at the same point in every game, and the machine keeps running — you simply cannot progress. A crash is the program halting or freezing outright, often unpredictably. Pac-Man’s level 256 is a kill screen because the game still plays; NES Tetris ending in a hard freeze is a crash. The reliability is the difference.

06 · Keep playing

If this has sent you down the rabbit hole: our complete guide to arcade gaming covers the whole coin-op story in one long read, the golden age timeline pins the years from Pong to PlayStation, and the retro gaming glossary decodes the rest of the vocabulary. Or skip the reading and head straight to our arcade — original machines, playable in the browser, high-score boards included. No kill screens. We checked our bytes.

End of guide · board 256 of 255