AboutBlogContact
TechnologyNovember 12, 1985 2 min read 164Updated: June 22, 2026

The CD-ROM: 650MB on a Shiny Disc

AunimedaAunimeda
📋 Table of Contents

We’ve all been there: feeding twenty 360KB floppies into a machine just to install a piece of software. It’s tedious, prone to errors, and frankly, a bit ridiculous. But today, I’m looking at a Yellow Book standard CD-ROM. It’s the same size as the music CDs that came out a few years ago, but instead of Phil Collins, it holds data.

Incredible Density

The storage capacity is mind-blowing. 650 megabytes. To put that in perspective, that’s about 1,800 floppy disks. For the first time, we can actually talk about "multimedia" without laughing. We can put high-resolution images, digitized sound, and massive amounts of text on a single, durable piece of plastic.

The technical magic happens with a laser reading microscopic pits on a reflective surface. Unlike a hard drive, where the head flies over the platter, the CD-ROM uses light.

The Trade-off: Access Times

It’s not all sunshine and rainbows, though. While the capacity is huge, the seek times are atrocious. We're talking hundreds of milliseconds compared to the 20-40ms we get on a decent hard drive. This means as developers, we have to be very smart about how we layout data on the disc.

/* Pseudo-code for optimizing CD-ROM reads */
// Instead of random access, we try to stream data
void load_level_data(int level_id) {
    // We physically place related files next to each other
    // on the disc to minimize laser movement (seeks).
    seek_to_sector(level_sectors[level_id].start);
    read_sectors(level_sectors[level_id].count, buffer);
}

Future Outlook

I predict the CD-ROM is going to revolutionize the way we distribute software and information. Think about encyclopedias-you could fit the entire Britannica on one disc with room to spare for videos! We’re entering an era where data is no longer the bottleneck; our ability to process and display it is. The "Interactive Age" has finally arrived.

Read Also

Blu-ray vs HD DVD: The High Definition Format Waraunimeda
Technology

Blu-ray vs HD DVD: The High Definition Format War

We're in the middle of another Betamax vs VHS. Blu-ray and HD DVD are fighting for the future of high definition, and it's all about blue lasers.

ZFS: The Last Word in File Systemsaunimeda
Technology

ZFS: The Last Word in File Systems

Sun Microsystems has just released ZFS as part of OpenSolaris. With 128-bit capacity and built-in data integrity, it's a quantum leap for storage technology.

Macromedia Director: Lingo Scripting for Interactive CDs (1999)aunimeda
Technology

Macromedia Director: Lingo Scripting for Interactive CDs (1999)

Shockwave is the future of the web, and Director is the king of the 'multimedia' era. Let's write some Lingo for that interactive kiosk.

Need IT development for your business?

We build websites, mobile apps and AI solutions. Free consultation.

Get Consultation All articles