Skip to content
Systems

Super Nintendo Entertainment System

Nintendo's 16-bit answer

The SNES arrived late to the 16-bit war but won through superior software, Mode 7 magic, and the most celebrated game library of any console. In Britain it arrived twice: eighteen months as a grey import at £250–£300, then officially at £149 — Nintendo undercutting the market that had been selling its own machine.

consolesnintendo16-bit1990–2003

The Super Nintendo arrived two years after the Mega Drive and still won. Not through hardware superiority—though it had advantages—but through software. Super Mario World, The Legend of Zelda: A Link to the Past, Super Metroid, Chrono Trigger: the SNES library reads like a hall of fame. Quality trumped timing.

Fast facts

  • Manufacturer: Nintendo.
  • Released: November 1990 (Japan), August 1991 (NA), 1992 (Europe).
  • CPU: Ricoh 5A22 (65C816) at 3.58 MHz.
  • Graphics: PPU with Mode 7, 256×224 resolution.
  • Colours: 256 on screen from 32,768.
  • Sound: Sony SPC700, 8-channel ADPCM samples.
  • Sprites: 128 on screen, 32 per scanline.
  • Special: Mode 7 rotation/scaling, enhancement chips.

Britain got it twice

The entry above says the SNES arrived two years after the Mega Drive. In Britain the gap was wider on paper and narrower in practice, because the machine was on sale here long before Nintendo sold it.

Mean Machines was reporting on British importers in April 1991 — a full year before the official launch — and the interesting part is what they were competing on:

Import specialists Advanced Console Entertainment are claiming that their Super Famicoms have better picture quality than any other machines currently available in Britain.

Not price, or stock, but picture quality. By October 1991 the same magazine reported what “must be one of the first Super Famicom games to be programmed in the UK”. British players had the machine, British studios were developing for it, and Nintendo had sold none of it here.

Then the official launch undercut all of them. Mean Machines in January 1992, on the announced price:

There’s no doubt that in the graphics and sound departments, the Super NES beats the Megadrive hands down and at £149, it’s a real bargain (grey import prices are still around £250 to £300!).

An official release arriving at roughly half the going rate is the reverse of the usual pattern, where the licensed product costs more than the import. It also set the terms of the fight: the same paragraph records “industry pundits” already speculating that Sega would have to answer, “some people even see the [price] tag dropping down to a tiny £99.99”.

The machine itself landed in April 1992, and Computer and Video Games caught the tone of the wait exactly — “SUPER NINTENDO HITS HOME AT LAST! … We’ve been waiting for aaages now” — at £149.99 with Super Mario World in the box. By February 1993 Super Play was asking whether “the days of the bargain grey import” were over.

One small design note from the January piece, which is the kind of thing only the period press records: the Japanese Super Famicom “was noted for its particularly ugly concrete block-like appearance” and was restyled for the West, and the new controller’s X and Y buttons “have indentations, so the player can distinguish between them and the A and B buttons by touch”.

Two sprite limits, running in opposite directions

The entry gives 128 sprites with 32 per scanline. The second half of that is true and incomplete — there are two per-line limits, and they discard in opposite orders.

32 sprites per line, “taken from lowest to highest OAM index. When this limit is exceeded, sprites with the highest OAM index will be discarded.”

34 slivers per line. Whatever survives the first test is “decomposed into 8 pixel wide slivers”, and there is a second budget of 34 of them. But:

during this phase the 32 sprites will be evaluated in reverse, from highest OAM index to lowest. This means that slivers with the lowest OAM index are discarded first.

The first limit drops the sprites a programmer considers least important. The second drops the ones they considered most important. A crowded scanline is therefore not simply truncated by priority — it is eaten from both ends, and which of two sprites survives depends on which limit you hit.

Within a single sprite the slivers “are evaluated in left-to-right onscreen order (even if flipped), so if the limit of 34 is met mid-sprite its rightmost slivers will be discarded” — a sprite can lose its right-hand edge and keep the rest.

There is also a documented hardware fault worth knowing:

Due to a bug in the PPU, off-screen sprites with an X coordinate -256 ($100) will count towards this limit.

A sprite parked entirely off the left of the screen at exactly that coordinate still consumes one of the 32.

Mode 7 is affine, and the perspective is a trick

Mode 7 is remembered for perspective. The hardware does not do perspective. It performs “an arbitrary 2D affine transformation” on a tilemap that is “effectively a 1024x1024 pixel square”, which can translate, “rotate at any angle”, zoom or squash, and shear — with one stated limit: “the scaling must be uniform along any axis (i.e. it can stretch along a straight line, but it cannot ‘bend’)”.

The wiki’s own comparison is the clearest: “conceptually similar to texture mapping a single quad on a modern GPU.”

An affine transform cannot produce a receding horizon, because parallel lines stay parallel. What produces one is this:

The affine transformation can be changed every scanline via HDMA, allowing versatile perspective and distortion effects.

A new matrix on every scanline, applied by DMA during horizontal blanking. The perspective in F-Zero and Pilotwings is not a projection the chip computes — it is a stack of a couple of hundred separate flat transforms, one per line, scaled progressively so that the eye assembles a ground plane. Which is why Mode 7 floors are always flat, always single-layer, and always break in the same way when a game asks them to do something the stack cannot express.

Mode 7 magic

The SNES’s signature capability:

  • Background transformation: Rotation, scaling, perspective.
  • Racing games: F-Zero’s sense of speed.
  • RPG world maps: Sweeping perspectives.
  • Boss battles: Dramatic scaling effects.

Mode 7 couldn’t be replicated on Mega Drive.

The sound is a separate computer

The entry calls the audio hardware a sound chip. It is closer to a second machine inside the first, and the reason SNES music can be lifted out as .spc files and played on its own.

The SHVC-SOUND module holds two Sony parts. The S-SMP is a processor — an “SPC-700 processor, clocked at 1.024MHz” — with three timers, its own IPL boot ROM, and its own RAM behind a bus arbiter. The S-DSP is the sound generator: “8 voice channels”, decoding “BRR samples at a variable sample rate using 4-point Gaussian interpolation”, through a “FIR filtered echo buffer”.

The two CPUs barely talk. Communication runs through “APUIO and CPUIOx registers for communication between the 65816 S-CPU and the SPC700 code” — four bytes wide. A game uploads a program and its samples into the sound module’s memory at the start, and after that the audio processor runs its own code against its own data, in its own address space. That is why the music does not stutter when the main processor is busy, and why the reverb is everywhere: the echo buffer is in the sound module’s RAM, always available, costing the game nothing.

One number falls out of the others. The module is “clocked by a 24.576MHz ceramic resonator” and “generates 1 stereo sample every 768 resonator cycles” — which is 32,000 samples a second exactly. The SNES’s 32 kHz output rate is not a chosen figure but an arithmetic consequence of a resonator and a divider.

The company that built it is the same one Nintendo was then working with on a CD add-on, and the same one whose PlayStation would end Nintendo’s dominance five years later — a machine whose own manual documents a sound processor, an MDEC and a geometry engine hung off a CPU stripped of its memory manager. The attribution of this chip to Ken Kutaragi personally is widely repeated but rests here on modern secondary accounts, not on anything written at the time.

The Sony sound

Ken Kutaragi’s audio chip defined SNES sound:

  • Sample-based: Real instrument sounds, not synthesis.
  • 8 channels: Rich, layered arrangements.
  • Distinctive reverb: Recognisable SNES ambiance.
  • Composers thrived: Nobuo Uematsu, Koji Kondo, Yasunori Mitsuda.

The game library

Perhaps gaming’s greatest software lineup:

  • Super Mario World: Launch title, masterpiece.
  • A Link to the Past: Zelda perfected.
  • Super Metroid: Atmospheric action-adventure.
  • Final Fantasy VI: JRPG storytelling peak.
  • Chrono Trigger: Dream team collaboration.
  • Donkey Kong Country: Pre-rendered graphics showcase.
  • EarthBound: Quirky cult classic.
  • Street Fighter II: Console fighter standard.

Enhancement chips

Nintendo pushed hardware limits:

  • Super FX: Polygon graphics (Star Fox, Yoshi’s Island).
  • SA-1: Accelerated processing.
  • DSP: Fast calculations for racing games.
  • Cartridge-based: Each game could include custom hardware.

The console war

SNES versus Genesis defined the era:

  • Later launch: Two years behind.
  • Higher price: More expensive than Genesis.
  • Quality positioning: Nintendo emphasised games over specs.
  • Ultimate winner: SNES outsold Genesis globally.

Third-party relations

Nintendo loosened restrictions:

  • Learned from NES-era complaints.
  • More games allowed per publisher.
  • Exclusive deals still pursued.
  • Square, Enix, Capcom delivered essential software.

Regional variations

The console had different identities:

  • Japan (Super Famicom): Colourful, curved design.
  • North America (SNES): Boxy, purple accents.
  • PAL regions: Slower 50Hz, letterboxed games.

Legacy

The SNES proved that being first matters less than being best. Its game library remains unmatched in consistency and quality. The console defined what 16-bit gaming could be and set standards that influence game design today.

See also

Not yet fact-checked. This entry was drafted by an AI and nobody has verified it. The dates, figures and technical details may be wrong. Use it to find your bearings, then confirm anything that matters against a primary source.