Follow TV Tropes

Following

Media Notes / How Video Game Specs Work

Go To

Ah, video game specs. The fanboys like to use them as the ultimate indisputable weapon in their Flame Wars. But they don't really know what they mean, for they barely look past one aspect of them.

Take the old bit size (8-bit, 16-bit, 32-bit, 64-bit, etc.). Most of us know that bit size isn't a real measurement of a system's power, but few of us even know why. It's actually word size; the measurement of how large a chunk of information can be handled by the processor at once.note  In theory, larger word size should mean faster processing, but it's not that simple—especially since computer manufacturers have figured out that people are using "word size" as a quick-and-dirty proxy for "fastness" (or worse, "realistic graphics"note ), and started playing arcane tricks designed to boost word size at the possible expense of actual improvements in the rest of the architecture.

This marketing scheme began very early on, in fact. The earliest recorded example of this being tried out is with NEC and the TurboGrafx-16, which is, as evident in its name, advertised as a 16-bit machine despite having a 8-bit CPU (the 16-bit part refers to its Graphics chipset, which was capable of more than 256 colors), or SNK claiming that the Neo Geo is a 24-bit machine (it's actually just 16-bit like the Sega Genesis- in fact, it's the exact same CPU. The 24-bit part refers to the color depth that its custom GPU chipset was capable of). Even the Nintendo 64, for example, while indeed capable of 64-bit calculations, ran with a 32-bit capacity most of the time for a lot of good reasons. Some people have gone so far as to call the Dreamcast, PlayStation 2, GameCube and Xbox generation "128-bit" thanks to this misinformation to this very day—out of these, only the Dreamcast and PS2 were capable of 128-bit anything natively, and even then, it's not for general-purpose processing—and on top of that, the PS2's main processor is a 64-bit MIPS R5900,note  although Sony deliberately mismarketed it as being twice as much that due to the "more bits equals better graphics" belief still lingering, and to compete with the equally misadvertised Dreamcastnote . Even Nintendo got on the bandwagon, as the tech demo for the GameCube was called Super Mario 128, implying that the console has a 128-bit CPU.note  If anything, it was Microsoft who were honest by upfront admitting that the CPU in the Xbox is 32-bit just like in PCs, and that more bits generally do not translate to better graphics and better gameplay, instead playing up on the Xbox's exclusive titles and ease of porting Windows games to the platform.note . Occasionally, the bit misconception still pops up at the start of the PS360 era, such as some mistaking the Xbox 360 as having a 360-bit CPU (it actually uses 64-bit hardware) or the PlayStation 3 as having a 256-bit CPU (again, 64-bit hardware), this completely died down shortly after.

Which is not to say that the leap in bits was entirely pointless: An 8 bit word can only hold a value of up to 255, while a 16 bit word can hold a value of up to 65,536 (which acts as a cap on anything the programmer wants to do: want a map with more than 256x256 squares? You're going to need to go to 16 bits for that, and in the NES, for example, that's gonna require more space than the CPU has easy access to). There is a point of diminishing returns, though: a 32 bit word holds a value of up to 4,294,967,296 (4 billion), which is more than enough for most purposes (and most 32 bit CPU instruction sets support 64 bit variables), so the jump to 64 bit words was usually driven more by bus limitations and memory growing larger than 4 gigabytes than by programmer needs. However, the Advent of 3D games and the switch from tiles and sprites to polygons and textures does provide a valid need for 64-bit variables.

However, what is done with the processor can have a significant difference in performance. An instructor in a class on mainframe programming gave an example. To clear a line of eighty 8-bit characters to blanks, such as for printing, the common practice was to put a space in the first character, then move the entire field from character 1 to character 2 for a length of 1 less than the size of the field. This moves character 1 to character 2, then to 3, and so on for 80 characters. What he pointed out was that even though arithmetic using floating point is much slower than operations of moving characters, it would have been faster to put, say, 4 blanks in a floating point register and store that 20 times than moving one character 80 times.note 

Or take processor speed. The Super Nintendo's 5A22 CPU had a Clock Speed of 3.58 MHz (megahertz). The Sega Genesis/Mega Drive's 68000 CPU had a clock speed of 7.67 MHz, just over twice the Super NES. So that meant that Super NES games should only run half as fast, right? Sega did have this advertising campaign of "Blast Processing", and some early Super NES games did have slowdown. When Capcom ported Street Fighter II Turbo to the Super NES, it had a secret mode that was faster than the Arcade Game and just as fast as the Genesis version, with little noticeable slowdown. The mode turned out to be more gimmick than playable, but it showed that the clock speed was only part of how the processor worked, and proper use of the system was what made the game run so fast. It did not necessarily mean the Super NES is just as fast as the Genesis, however, as evidenced by the faster scrolling speeds of Genesis games like Sonic the Hedgehog and the 3D polygon graphics of Genesis games like Hard Drivin' and Star Cruiser not needing any Cartridge enhancement chips (which the Super NES required for 3D games like Star Fox).

Nowadays, most hardware engineers have given up on bumping clock speeds and gone on to improve bus speeds, which has less to do with how fast the computer "thinks" than with how fast it "talks". Taking the same example of the fourth generation ("16-bit era") consoles, the Super Nintendo's 5A22 has a 2.68 MHz data bus, while the Mega Drive's 68000 has a 5 MHz data bus. However, the 5A22 writes on every bus cycle (at 2.68 MHz), whereas the 68000 requires 4 clock cycles for every write (at 1.92 MHz). The advantage of the 68000 is that its data bus has a wider 16-bit bus width, twice that of the 5A22's 8-bit data bus. The 68000 thus writes 16 bits (2 bytes) at a time, giving it a 3.8 MB/s write speed, whereas the 5A22 writes 8 bits (1 byte) at a time, giving it a 2.6 MB/s write speed.

So far, we've only discussed the Central Processing Unit (CPU). Another equally important factor (or nowadays, more important) is the Graphics Processing Unit (GPU). Several marketing campaigns often referred to the GPU, yet many misunderstood them, erroneously assuming they referred to the CPU. The TurboGrafx-16, for example, was advertised as a "16-bit" system because its dual GPU chipset had a 16-bit data bus, but many erroneously assumed the "16-bit" was referring to its 8-bit CPU somehow being 16-bit. Likewise, the Neo Geo was advertised as a "24-bit" system because its GPU chipset had a 24-bit data bus, but many erroneously assumed it was referring to its CPU processors (one 16/32-bit, the other 8/16-bit). This misadvertising is by no means limited to consoles, as GPU manufacturers for PCs and Macs of the era also play up to the hype, often claiming that more bits equals more vibrant colors or more realistic graphics compared to their lesser competitors.

The most infamous example of such a misunderstanding is the "Blast Processing" campaign of the Sega Genesis. Many erroneously assumed the term was referring to its CPU's faster clock speed, but it was in fact referring to its GPU's faster DMA (direct memory access). The Genesis GPU had a 13 MHz clock speed and 8 MHz bus speed, whereas the Super NES GPU had a 5.3 MHz clock speed and 3.5 MHz bus speed. This allowed the Genesis GPU to have a faster DMA write speed of 3.2–6.4 MB/s, compared to the Super Nintendo's 2.6 MB/s DMA write speed. This was what really gave the Genesis its faster performance, not just its CPU's higher clock speed.

So if you really want to know what specs actually mean for video game systems (which covers computers, set-tops, and handhelds), just take a look at the following pages.

See Video Game Systems to see how these specs work for them.


Pages:

Nitty and gritty:

Hardware

Software

Related topics


Top