Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Media Data Storage Games Hardware Entertainment

The Untold Story of the Invention of the Game Cartridge 60

harrymcc writes In 1973, an obscure company which had been making electronic cash registers looked for a new business opportunity. It ended up inventing the game cartridge--an innovation which kickstarted a billion-dollar industry and helped establish videogames as a creative medium. The story has never been told until now, but over at Fast Company, Benj Edwards chronicles the fascinating tale, based on interviews with the engineers responsible for the feat back in the mid-1970s.
This discussion has been archived. No new comments can be posted.

The Untold Story of the Invention of the Game Cartridge

Comments Filter:
  • by jellomizer ( 103300 ) on Thursday January 22, 2015 @12:45PM (#48876147)

    USB Flash Drives are Cartridges reborn.

    • by wierd_w ( 1375923 ) on Thursday January 22, 2015 @12:53PM (#48876225)

      Not exactly. A flashdrive is a serial bus peripheral that communicates using an encoded format.

      A cartridge is typically little more than an exposed parallel logic bus that directly maps to the console's main memory. (Atari 2600 carts were literally a ROM chip, with its leads exposed on the card edge. Nothing else. http://www.hardwaresecrets.com... [hardwaresecrets.com] )

      NES and SNES carts had special purpose chips on them to help page the address of the ROM inside the main CPU's memory space, and even a few special co-processors on occasion, but were still just a direct tie-in to the memory bus.

      A DIMM and a cartridge have more in common than a USB stick does with a cartridge.

      • And apparently the site I linked does not like hard links. Meh. Whatever. Just image search for "2600 cartridge interior", you will find it.

      • by jellomizer ( 103300 ) on Thursday January 22, 2015 @01:33PM (#48876689)

        Yes a USB Flash Drive is more complex than a Cartridge, being that it is going threw a Universal Bus and is Read/Write (However Zelda use to be able to save data).
        But compared to other forms of storage after cartridges downfall after the Nintendo 64. The USB Flash brings up many of the core Ideas of the Cartridge. A device that has no moving parts that is made to be constantly inserted and removed.

        The Ford Model T is also very quite different than a Ford Mustang. But still they are classified as cars.

        • by wierd_w ( 1375923 ) on Thursday January 22, 2015 @01:58PM (#48877003)

          Clearly, you do not understand the implications of what I said.

          USB storage requires an entire operating system to even access. It requires a kernel OS process, a driver for the specific USB chipset attached to the system, and yet another driver for the filesystem stored on the device. In addition to this, it has to have multitasking capabilities to switch between reading and decoding the data on the device, and executing the read program code.

          In stark contrast, a game cartridge requires no OS at all. The CPU simply jumps to the address location where the cartridge's ROM chip is logically assigned, and the CPU treats it exactly like it was fetching from RAM. The game is the ONLY thing running.

          The better comparison would be "USB is the new data cassette!"

          You can put all kinds of crazy things inside a cartridge that you simply could never put inside a USB stick. Things like additional RAM that runs at full speed, Whole new CPUs, an additional peripheral bus connector-- you name it.

          In theory, a (crazy) person could take an old SNES console, and with a very purpose built cartridge, turn it into a playstation.

          Really, the comparison you are drawing does not really reflect what a cartridge actually is.

          • In stark contrast, a game cartridge requires no OS at all. The CPU simply jumps to the address location where the cartridge's ROM chip is logically assigned, and the CPU treats it exactly like it was fetching from RAM.

            That was true until roughly the Nintendo DS. It uses a seek and read protocol, similar to parallel ATA or SD, to read 512-byte blocks of game data from the Game Card. Even the N64 and GBA used a seek and read protocol, but the console's memory controller abstracted it away from the CPU with wait states.

            In theory, a (crazy) person could take an old SNES console, and with a very purpose built cartridge, turn it into a playstation.

            I don't see how. There isn't enough bandwidth over the Super NES cartridge bus to refill video memory every frame. That's part of why the agreement between Nintendo and Sony to make the Super NES CD periphera

            • I said "in theory". The devil's in the details.

              still, I wonder how far one could get coopting both the EXT connector on the bottom, and the cartridge slot. Use the EXT connecter for IO (including video and SPU channel) and use the cartridge slot for the snes-side program code, ram access, and return communications. A hardware mpeg decoder in the cartridge slot, with the mpeg stream coming in on the ext port or something maybe. Given that the screen resolution isnt so big to begin with, a few hundred kbps w

              • by tepples ( 727027 )

                I wonder how far one could get coopting both the EXT connector on the bottom, and the cartridge slot.

                Copy bandwidth between the A bus (main memory and the cartridge) and the the B bus (the PPU and the edge connector) is 2.7 MB/s, but then you have to copy it back out to video memory. You could put the copy source on the cart A bus, but then you still get only 2.7 MB/s to fill video memory. You can write to memory only during vertical blanking, which is about 6 KiB worth of copying. The Super Game Boy accessory got away with it because a 160x144 pixel frame at 2bpp fits into 6 KiB.

                in theory, one could do this on a cartridge, and never hope to do so over USB.

                My USB TV tuner begs to di

                • How about a network stack and wifi or 3/4G in a cartridge (and access to endless games from da klowd)? Silly, when you can now probably fit a few supercomputers with all the trimmings in a cartridge that size.
              • You'd put the A/V out on the cartridge containing the PlayStation, and only use the cartridge connector to pass the inputs from the SNES controller. (How could you downres the PS output into SNES graphics without dedicated digitizing hardware, anyway?) Maybe you could even go all 32X and mix the video outputs to allow overlaying the SNES graphics on top of the PS output. In that case you'd want to be able to send data to the SNES from the CD, so you'd probably need some kind of 2-4Mb cache in there somew
                • You'd put the A/V out on the cartridge containing the PlayStation

                  At that point, you're just using the Super NES as a power supply and controller reader.

                  Maybe you could even go all 32X

                  Better yet, go all Saturn, dropping the old hardware entirely because an S-Video output and SPI inputs are probably cheaper than all that circuitry to interface with the legacy console. That's what led Sony to success with PlayStation: it skipped the 32X stage.

            • by Toshito ( 452851 )

              That's because the Nintendo DS doesn't use cartridges, it's more like a memory card...

            • I don't see how. There isn't enough bandwidth over the Super NES cartridge bus to refill video memory every frame.

              There is, but not quite at the full frame size. This is why starfox has borders, it actually does this.

              Another cartridge that did this was the Super Gameboy. There is a literal entire gameboy chipset in there, and it is copying the video output to the snes in realtime (again, not the full screen though, there's a border)

          • by mjwx ( 966435 )

            USB storage requires an entire operating system to even access. It requires a kernel OS process, a driver for the specific USB chipset attached to the system, and yet another driver for the filesystem stored on the device. In addition to this, it has to have multitasking capabilities to switch between reading and decoding the data on the device, and executing the read program code.

            Which are all found on any modern game console. Nintendo have been using SD cards in a modified case for years now in the DS.

            • With large volume flash storage becoming cheap, far in excess of that of DVD and even bluray, why not use them as game storage.

              Because mass produced pressed discs are still cheaper to manufacture than flash storage. a 32GB SD card costs 20 bucks, a 50GB blu-ray RW disc is 3.50

              Games could be saved onto the flash drive, the hard drive or both,

              Where have you been the past 9 years. You can, if you want, go digital and install games from PSN to a PS3 hard drive and never bother with a disc. On the PS4, games are installed to the hard drive, even if you use the disc. (if you buy the disc version the game will do a disc check on start but that's all you need it for)

              The PS vita, uses a combination of

          • USB storage requires an entire operating system to even access.

            Nope. Computers can boot off USB. But of course the technicalities of how this is done are different.

      • NES and SNES carts had special purpose chips on them to help page the address of the ROM inside the main CPU's memory space

        What does this mean? Do you mean basically bank-switching ROMs? (Very very very very rough analogy -- manual VM.) That way, you could get more than 64K of ROM on a NES..

        If so, not sure what you mean by it on the SNES though. The 65816 has a 16 meg address space.. None of the SNES cartridges were anywhere near that, were they?

        • by gl4ss ( 559668 )

          yeah it basically just means bank switching roms.
          emulators(wildcarts have lists of what styles they support.

          dunno what's the deal with snes carts. maybe they saved on pins/traces.

    • I'd say they're pretty different in concept. The former is designed to be reused and rewritten, and executables stored on it are usually wholly copied to the main device's primary storage before being run, as USB isn't fast enough. The latter is ROM made to hold a single program which is run off of it. Plus, cartridges (usually) aren't multi-platform.
    • As I understand it, the difference between a cartridge and something like a USB drive is one of level of integration. In the case of a cartrige, the logic in the cartridge is basically directly interfaced with the system hardware, and becomes part of the execution path directly. With a USB drive, there are layers of obfuscation separating the data on the drive from the computer (USB drivers, the filesystem, the OS, etc.) It's probably a subjective line to draw, but in the case of cartridges vs. USB drives i
    • by Thud457 ( 234763 )
      USB is just a reimplementation of Atari SIO [wikipedia.org] on steroids.
  • by crgrace ( 220738 ) on Thursday January 22, 2015 @01:15PM (#48876427)

    MOS Technology did a big business in manufacturing ROMs for Atari's cartridges (both the 2600 and 400/800 /XE line). They also made the 6502 variants used in the 2600 and 400/800/XE and in Atari's main competitors (Apple and Commodore).

    Eventually MOS was purchased by Commodore and stopped making ROMs but cranked out the 6502s and SID chips.

    For some reason they never got around to making a followup to the 6502 and let the next generation business go to Motorola. Greed does that.

    Another fun fact: The original VCS games were programmed on a PDP-11 using a cross-assembler (!) and soon enough Atari upgraded to a VAX. When a game was finished they sent program tape to MOS who made the metal mask. The ROMs were pre-processed up to the metal deposition step. Then the final metal pattern was defined by whatever program was being written to ROM. This is one reason how MOS made them so cheaply: they mass produced ROM blanks and then programmed them with a single mask. I talked with an Atari old-timer about the process a couple of years ago. Great stories.

    • by tlhIngan ( 30335 )

      Another fun fact: The original VCS games were programmed on a PDP-11 using a cross-assembler (!) and soon enough Atari upgraded to a VAX. When a game was finished they sent program tape to MOS who made the metal mask. The ROMs were pre-processed up to the metal deposition step. Then the final metal pattern was defined by whatever program was being written to ROM. This is one reason how MOS made them so cheaply: they mass produced ROM blanks and then programmed them with a single mask. I talked with an Atari

  • by Anonymous Coward

    I worked with lots of embedded systems in the '80's that stored their program on banks of UV-EPROM chips that we'd have to upgrade using a a chip-puller (screwdriver) and a chip eraser and burner.

    The sockets would eventually fail, requiring repair/replacement of the entire CPU board (about a square foot in size).

    When we saw our first game system with replaceable ROM cartridges, there was much forehead slapping, since we were already using board-edge connectors (on a bus very similar to the S-100).

    • by Agripa ( 139780 )

      The sockets would eventually fail, requiring repair/replacement of the entire CPU board (about a square foot in size).

      Were those sockets made by Texas Instruments? They made edge wipe sockets which failed over time whether the chips were regularly replaced or not.

  • As a kid my family had a Channel F and a boatload of cartridges for it -- plus 2 built-in games! The last one I remember getting was "Galactic Space Wars", and then the Atari 2600 showed up thus relegating the Channel F to the closet.

    The graphics weren't great, and the games were something that a beginner could code up on an Atari 800 of the same era in BASIC. But they were fun enough. The Channel F did have a really unusual controller: the joystick could be moved about in a normal axis (up,down,left,rig

    • We had one too.

      Imagine playing a video game via a Bop-It(tm); that will give you the proper experience.

      Thankfully the Atari 2600 and VIC-20 arrived soon thereafter #andtherestishistory

  • Hacking the Atari (Score:4, Interesting)

    by Snotnose ( 212196 ) on Thursday January 22, 2015 @03:40PM (#48878445)
    We figured out the Atari cartridge was nothing more than a popular PROM (2716?) with one of the control signals reversed. We made our own cartridges that used an EEPROM, then used our EEPROM burner to read cartridges and store the contents on a floppy. We'd then burn EEPROMs of the games we wanted, and pop them into the ZIF socket on our home made cartridges.

A morsel of genuine history is a thing so rare as to be always valuable. -- Thomas Jefferson

Working...