apple

Uncategorized

#13 – GS/OS and the Late 8/16-Bit Systems: Apple IIGS, Commodore DOS, and Atari DOS (1986–1992)

The thirteenth episode in the series explores the final wave of 8/16-bit operating systems, with GS/OS on the Apple IIGS as its crown jewel – the first “Mac-style” Finder brought to the classic Apple II world. Alongside it, we dive into the evolution of Commodore DOS and Atari DOS, which kept pushing the boundaries of 8-bit platforms well into the early 1990s. 1. Apple IIGS and GS/OS – the Mac-style Finder for Apple II n 1986, Apple launched the IIGS – a 16-bit computer that was compatible with the Apple II line, but technically a new machine: GS/OS (from 1988, System Software v4.0–6.0.1) was essentially the Finder from Macintosh – brought to Apple II: Apple GS/OS 2. GS/OS – a true 16-bit Apple II operating system Compared to ProDOS or DOS 3.x, GS/OS was a revolution: GS/OS was Apple’s attempt to bridge the gap between the past and the future – classic Apple II meets modern Mac interface. 3. Commodore DOS (CBM DOS) – the drive is the computer Commodore DOS was unique in that it lived inside the disk drive itself: Later versions (JiffyDOS, DolphinDOS) brought: 4. Atari DOS and SpartaDOS X – advanced power on small machines Atari DOS: Later innovations included SpartaDOS X – a cartridge-based OS with: SpartaDOS X became the most powerful DOS for 8-bit Atari computers – inspired heavily by MS-DOS. 5. Legacy of the “end-of-an-era” systems GS/OS, JiffyDOS, and SpartaDOS X represent the final form of what the 8/16-bit era could deliver. The Apple IIGS, Commodore C128, and Atari XL/XE series proved that even with limited hardware, you could still build capable, expandable, and user-friendly systems — with GUI, plug-ins, and powerful file systems. Even today, emulators and retro communities keep these systems alive, offering a nostalgic (yet functional) computing experience.

Uncategorized

#13 The End of an Era and New Beginnings – The Rise of PC and Windows

The late 1980s and early 1990s marked a spectacular shift in the personal computing landscape. The era of diversity, alternative platforms, and local computer brands was coming to an end, giving way to the global dominance of the IBM PC architecture and Microsoft Windows. This episode summarizes the final stage of the evolution of personal computers, examines the triumph of the PC, and the downfall of legendary alternative machines. It also explores the foundations of the modern IT industry and the legacy left by the great “losers” of that transformative era. Rapid Hardware Evolution – From 386 to Pentium Intel 386 and 486 – The 32-bit Leap for PCs In 1985, Intel introduced the 80386 processor, the first 32-bit chip in the x86 architecture. It significantly increased the PC’s capabilities, supporting up to 4 GB of memory and modern multitasking operating systems. By the late 1980s, the improved Intel 486 appeared, integrating the CPU, FPU, and on-chip cache—boosting both performance and efficiency. The Pentium Era – A New Generation In 1993, Intel launched the first Pentium processor, which ushered in a new era for x86 chips. Pentium improved floating-point performance and introduced superscalar pipelines and better multitasking support. CPU Intel 486DX by David290 Creative Commons Attribution-Share Alike 4.0 Windows 3.0 and 3.1 – The GUI Revolution Begins From MS-DOS to Windows In the early PC era, MS-DOS dominated due to its low cost and simplicity. However, text-based interfaces and command lines were a barrier to mass adoption. Windows 3.0 (1990) and Windows 3.1 (1992) finally delivered a stable, intuitive, and attractive graphical user interface (GUI) that became the new standard: Competing with Apple and Amiga Despite advanced GUI systems like Apple Macintosh and Amiga, Windows quickly overtook the market due to broader hardware support and lower PC prices. A few years after Windows 3.1’s release, it dominated the personal computing space, enforcing hardware standardization and pushing out alternatives. Windows 3.1 by Darklanlan Creative Commons Zero, Public Domain Dedication The Fall of Legends – End of the Alternatives The Collapse of Commodore and the Amiga Commodore, one of the biggest names of the 1980s and early 1990s, declared bankruptcy in 1994. Despite innovative features like the AGA chipset and multitasking, Amiga computers couldn’t compete with the PC-Windows combo—partly due to poor marketing and lack of strategic vision. Atari’s Withdrawal Atari, a major player of the ‘80s, withdrew from the PC market in the early 1990s. Its final models, like the Falcon 030, arrived too late to make an impact. Local Brands and Niche Markets Throughout the 1990s, local and niche computers also disappeared, giving way to standardized, mass-produced PC clones. State-owned enterprises in Eastern Europe couldn’t keep up with Western technology, and imported PCs quickly took over. Atari Falcon 030 by F-Andrey Creative Commons Attribution 2.0 The Birth of the Global PC Market and the Multimedia Era Mass Adoption of the PC The global standardization of IBM PC-compatible systems led to an explosion in software, peripherals, and IT services. PCs found their way into homes, schools, and businesses, changing the way people worked and played. The Multimedia Revolution With affordable sound cards (Sound Blaster, Gravis Ultrasound), graphic cards (VGA, SVGA), CD-ROMs, and modems, PCs became multimedia hubs, setting the stage for the Internet era. Sound Blaster 16 by Creative Commons Attribution-Share Alike 2.5 The Legacy and Spirit of Alternatives Though most alternative platforms disappeared, their ideas and spirit live on in: Many GUI concepts and innovations from Amiga, Macintosh, and Atari continue to influence today’s systems. Summary The rise of PC and Windows marked the natural conclusion of personal computing’s early evolution. Hardware and software standardization enabled global computerization. The fall of legendary alternatives ended an era of variety but left behind a rich technological and cultural legacy. Today’s IT world rests on the foundations laid in that pivotal decade.

Uncategorized

#02 MOS Technology 6502 Processor: Architecture, History, and Computers

1. Architecture and Design The MOS Technology 6502 is an 8-bit microprocessor with a 16-bit address bus, built using 8μm NMOS technology with 4528 transistors (3510 enhancement and 1018 depletion load). The die size is 3.9 × 4.3 mm (16.6 mm²), and it requires a single +5V power supply. Pinout diagram of the MOS 6502 microprocessor showing all 40 pins, including address and data buses and control signals 1.1 Internal Organization The 6502 has a minimalist register set consisting of only 6 registers: 8-bit registers: 16-bit register: Unlike the Z80, the 6502 has no register pairs – all 16-bit operations must be performed through separate instructions for the low and high byte. Little-endian Architecture The 6502 is a little-endian processor, meaning 16-bit values are stored with the low byte first. For example, address $1234 is stored in memory as $34 $12. Zero Page One of the 6502’s key features is the Zero Page – the first 256 bytes of memory ($0000–$00FF) act like pseudo-registers. Instructions referencing the Zero Page: The stack is permanently located on page $01 ($0100–$01FF). 1.2 Addressing Modes The 6502 offers 13 addressing modes, including: Mode Example Operation Immediate LDA #$EA A ← $EA Absolute LDA $0314 A ← M($0314) Absolute,X LDA $0314,X A ← M($0314+X) Zero Page LDA $02 A ← M($02) Zero Page,X LDA $02,X A ← M($02+X) (Zero Page,X) LDA ($02,X) A ← M(PTR($02+X)) (Zero Page),Y LDA ($02),Y A ← M(PTR($02)+Y) 1.3 Instruction Set The 6502 has 56 basic instructions (compared to the Z80’s 158). With different addressing modes, this totals 151 opcodes. Categories include: 2. History of Creation 2.1 Founding of MOS Technology The 6502 story began in 1973, when Chuck Peddle was working at Motorola on the 6800 processor. Peddle saw market demand for a much cheaper processor than the ~$300 solutions of the time. When Motorola’s management rejected his proposal, he left the company. In August 1974, he and seven other Motorola engineers – Harry Bawcom, Wil Mathys, Rod Orgill, Ray Hirt, Mike Janes, Terry Holdt, and Bill Mensch – joined MOS Technology in Valley Forge, Pennsylvania. Chuck Peddle and his team displaying a large layout of the MOS 6502 microprocessor / team6502.org 2.2 Design Team MOS Technology was a small semiconductor firm founded by John Paivinen, a former GE colleague of Peddle. The company specialized in calculator chips and had its own mask lab and production line. The “Motorola Eight” team included: 2.3 Design Process The 6502 was largely designed by hand on paper. Without advanced simulation tools, most verification was done mentally or with basic aids. Key innovations included: 3. Evolution and Variants 3.1 Basic Versions: 3.2 Later Extensions: 4. Computers Using the 6502 4.1 American Pioneers: Apple II, By All About Apple museum official web site – http://www.allaboutapple.com/, CC BY-SA 3.0 Atari 800, By Evan-Amos – Own work, Public Domain 4.2 Game Consoles: Atari 2600, By Evan-Amos – Own work, Public Domain Nintendo Famicon, By Evan-Amos – Own work, Public Domain 4.3 British Systems: BBC Micro, By BBC_Micro.jpeg: Stuart Bradyderivative work: Ubcule (talk), Public Domain 4.4 Other European Implementations: 5. DIY Computers and Hobbyist Projects 5.1 Ben Eater 6502 Computer: 5.3 Other DIY Projects: 6. Modern Applications 6.1 Embedded Systems: The 65C02 is still produced by Western Design Center and used in: Bill Mensch claims 6502 derivatives are found in over 5 billion devices worldwide. 6.2 Educational Significance: The 6502 remains a perfect learning tool for: Its simplicity makes it ideal for newcomers to low-level computing.

Apple

Macintosh LC630

Intro: New project begins! 🙂I bought this LC630 on a popular auction site, sold as “unknown condition.”When it arrived, the first thing that hit me was the musty smell escaping from the inside.On opening it up, I found the entire motherboard covered in sticky, damp, old dust. Despite its age though, apart from the dirt on the outside, the computer doesn’t look too bad. With the exception of one known fault—and one new issue that happened during transport—it’s actually in decent shape. So, what’s the plan?A complete cleaning and wash, a recap, and then the first attempt to power it up. Of course, retrobrighting will also be part of the process to restore this once-great machine (even if it was “Low Cost”) to its original look and glory. Fingers crossed—and stay tuned for updates! 🙂 FIrst Cleaning: 17.08.2025 Dissassembly A quick update. The Mac has been taken apart and cleaned of the worst of the dirt to get rid of the musty smell and… cigarette smoke.The plastic parts are in surprisingly good condition, apart from a few minor issues, nothing broken. 18.08.2025 First scrubbing The first scrubbing with water and liquid detergent washed away decades of dirt. The difference is plain for all to see 🙂Before renovation, all elements will of course be washed again to remove any dirt residues that could not be removed now.

Apple

Macintosh Performa 450

Intro: This Performa 450 came to me as a purchase from Germany along with two other Mac computers. When I turned it on, the fan and hard drive started up, and I heard the sound of the system booting up, but there was no image. The problem turned out to be trivial: replacing the capacitors on the motherboard and in the power supply solved the issue. In addition, the case underwent retrobrightning. REPAIR Issues: no image when powered on no system boot Done: full recap of the motherboard and PSU Cleaning and retrobrighting of the case Result: After replacing the capacitors on the motherboard and in the power supply, the computer works properly

Apple

Macintosh LCIII

Intro: This LCIII came to me as a purchase from Germany together with two other Macs. When the power was turned on, the fan and hard drive would start up, but unfortunately there were no other signs of life. The problem turned out to be the capacitors, which had started leaking, as can be seen in the photos. REPAIR Issues: no startup chime when powered on no system boot Done: full recap of the motherboard and PSU Cleaning and retrobrighting of the case Result: After replacing the capacitors on the motherboard and in the power supply, the computer works properly

Apple

Macintosh LC

Intro: In the early 90s when, as a teenager, I read tests of this computer in trade magazines I really wanted to own one someday. I was captivated by the design, the operating system, the performance. At that time I myself owned, if I remember correctly, a Timex 2048 and an FDD3000 disk drive. Dreams come true, I received a Macintosh LC from a friend. The computer turned on but had problems with the image. i decided to restore it. REPAIR Issues: Incorrect image display Done: full recap of the motherboard repair of damaged tracks Cleaning and retrobrighting of the case Result: The displayed image is still not correct. the probably culprit is the VRAM. Unfortunately, I don’t have the right VRAM module at the moment, because the newer models I own have different modules.

Passionate about bringing retro computers back to life — Apple, Commodore, Atari, Amiga, and more.

Policies

© 2025 RetroComp. All rights reserved.

Scroll to Top