Skip to content(if available)orjump to list(if available)

Microsoft’s original source code

Microsoft’s original source code

209 comments

·April 3, 2025

stkai

The source code is such a fun read (for the comments). I found some source code for GW-BASIC, and here are two of my favorites:

  ;WE COULD NOT FIT THE NUMBER INTO THE BUFFER DESPITE OUR VALIENT
  ;EFFORTS WE MUST POP ALL THE CHARACTERS BACK OFF THE STACK AND
  ;POP OFF THE BEGINNING BUFFER PRINT LOCATION AND INPUT A "%" SIGN THERE

  ;CONSTANTS FOR THE RANDOM NUMBER GENERATOR FOLLOW
  ;DO NOT CHANGE THESE WITHOUT CONSULTING KNUTH VOL 2
  ;CHAPTER 3 FIRST
Edit: GW-BASIC, not QBASIC (https://github.com/microsoft/GW-BASIC)

ndiddy

Fun fact, GW-BASIC was a descendant of the original Altair BASIC. The "Translation created 10-Feb-83" headers on each source file refer to tooling Microsoft had that automatically translated the 8080 assembly to 8086 (it shouldn't be taken as a build date since they were manually modified after that point). Besides GW-BASIC, source code for the 6502 and 6809 rewrites of Microsoft BASIC were available up to this point (see https://www.pagetable.com/?p=774 and https://github.com/davidlinsley/DragonBasic) but I believe this is the first public release of the original 8080 BASIC code.

deathtrader666

Shouldn't it be "valiant" ?

roryirvine

Sure, but in those days spellcheckers were separate apps - the most popular at the time being CorrectStar from MicroPro.

They weren't integrated into programming-oriented editors, and it would have been unusual to run them against code.

3836293648

I still haven't seen anyone using a spellchecker in code outside of IntelliJ

nilsbunger

Steve Jobs used to say the problem with Microsoft is they don’t have taste.

The font-shimmering effect on scroll immediately reminded me of that, it is really distracting. And you can’t use reader mode to disable it.

(FWIW, I’m a fan of Bill Gates and all he’s done for the world)

nerevarthelame

On top of the poor readability, my 2-year-old laptop can't even navigate through the page without CPU and GPU going insane, and my fans blasting at max speed. It's the poorest, choppiest web performance I can recall, all for what should be a simple blog post.

SpaceNoodled

That's the fault of modern websites being massive JavaScript ad-playing behemoths instead of sub-1kB served HTML as god intended.

kevincox

FWIW the spinning scrolling effects of Apple release announcements are nearly as bad.

zelon88

Yes, I was shocked that Bill Gates's personal blog seems to have that "500 WordPress plugins" kinda vibe. Kinda reminds me of my old MySpace profile.

graton

Personally I like it :) Tastes differ.

spookie

I think it's pretty cool

n0rdy

Flipping through the source code is like a time machine tour of tech's evolution over the past 50 years. It made me wonder: will our 2025 code look as ancient by 2075?

And, btw, great infographics within the post.

zabzonk

I've written an Intel 8080 emulator that was portable between Dec10/VAX/IBM VM CMS. That was easy - the 8080 can be done quite simply with a 256 value switch - I did mine in FORTRAN77.

Writing a BASIC interpreter, with floating point, is much harder. Gates, Allen and other collaborators BASIC was pretty damned good.

teleforce

Fun facts, according to Jobs for some unknown reasons Wozniak refused to add floating point support to Apple Basic thus they had to license BASIC with floating point numbers from Microsoft [1].

[1] Bill & Steve (Jobs!) reminisce about floating point BASIC:

https://devblogs.microsoft.com/vbteam/bill-steve-jobs-remini...

zozbot234

Floating point math was a key feature on these early machines, since it opened up the "glorified desk calculator" use case. This was one use for them (along with gaming and use as a remote terminal) that did not require convenient data storage, which would've been a real challenge before disk drives became a standard. And the float implementation included in BASIC was the most common back in the day. (There are even some subtle differences between it and the modern IEEE variety that we'd be familiar with today.)

musicale

I agree - it's a useful BASIC that can do math and fits in 4 or 8 kilobytes of memory.

And Bill Gates complaining about pirating $150 Altair BASIC inspired the creation of Tiny BASIC, as well as the coining of "copyleft".

phkahler

I still have a cassette tape with Microsoft Basic for the Interact computer. It's got an 8080.

thijson

I remember my old Tandy Color Computer booting up and referencing Microsoft BASIC:

https://tinyurl.com/2jttvjzk

The computer came with some pretty good books with example BASIC programs to type in.

thesuitonym

You should upload the audio to the Internet Archive!

TMWNN

>Writing a BASIC interpreter, with floating point, is much harder. Gates, Allen and other collaborators BASIC was pretty damned good.

The floating point routines are Monte Davidoff's work. But yes, Gates and Allen writing Altair BASIC on the Harvard PDP-10 without ever actually seeing a real Altair, then having it work on the first try after laboriously entering it with toggle switches at MITS in Albuquerque, was a remarkable achievement.

zabzonk

Allen had to write the loader in machine code, which was toggled in on the Altair console. The BASIC interpreter itself was loaded from paper tape via the loader and a tape reader. The first BASIC program Allen ran on the Altair was apparently "2 + 2", which worked - i.e. it printed "4" I'd like to have such confidence in my own code, particularly the I/O, which must have been tricky to emulate on the Dec10.

_fat_santa

Total sidenode but "Gates Notes" has to be one of the most exotic personal blogs I've ever seen. At this point would you even consider this a personal blog?

queuebert

Maybe Bill has really taken an interest in Javascript. /s

jwnin

Some luck, and willingness to take risks paid off in ways that could never be anticipated. Not sure I'll see something like the pc era in my lifetime. Perhaps mobile phones, or the Internet.

LeFantome

The Internet?

wrobelda

I mean… The AI?

thesuitonym

Consider that nobody ever sat in countless meetings asking "How can we use the PC?" They either saw the vision and went for it, or eventually ran up against the limitations of working without a PC and bought in.

hnuser123456

Well, apparently, the guys in Xerox did sit in meetings not knowing what to do, until Steve Jobs visited PARC and saw what was possible.

Izikiel43

That came out of millions of dollars and man hours of investment by Google and OpenAi.

VS

Some college students selling software they didn't have and getting it ready from 0 to sellable in 2 months which led to a behemoth that still innovates to this day.

jonas21

It doesn't sound that different from Alex Krizhevsky training AlexNet on a pair of gaming GPUs in his bedroom, winning ImageNet, and launching the current wave of deep learning / AI.

jer0me

The source code is linked at the end (warning: it's a 100 MB PDF).

https://images.gatesnotes.com/12514eb8-7b51-008e-41a9-512542...

pdw

The printout is dated 10-SEP-75 and is labeled "VERSION 3.0 -- MORE FEATURES TO GO".

Curiously this isn't the oldest extant version of the source code. The Harvard archives have a copy of version 1.1, printed on 30 April 75. http://altairbasic.org/other%20versions/ian.htm

Aardwolf

The printout also contains dates 6-SEP-64 below it, any idea what those are?

seabass-labrax

Thank you for the warning. I once used up my Internet package's entire monthly quota by following a similar link on Hacker News.

mysterydip

Ironic for something designed to take up only 4KB on its target machine :)

paulddraper

(It's a high-res image of the printed code.)

masfuerte

Nice one. Has anyone OCRed this back into text?

pronoiac

I attempted OCR with OCRmyPDF / Tesseract. It's not great, but it's under 1% the size, at least. https://github.com/pronoiac/altair-basic-source-code

noname120

Maybe you should try something like EasyOCR instead: https://github.com/JaidedAI/EasyOCR

azemetre

It's interesting reading this after finishing Palo Alto by Malcom Harris.

jgord

added to my must-read list.

I notice his interview on Democracy Now : https://www.youtube.com/watch?v=j7jPzzjbVuk

This guys mental map is impressive, as are the color of his book titles : https://www.goodreads.com/author/show/16872611.Malcolm_Harri...

jh00ker

Thanks for the Democracy Now interview! His description of "tech layoffs" is the most concise framing I've heard to describe what I've felt about it:

"Cosmetic offering to the financial markets to show that Silicon Valley still can control its labor costs... It's less the future flow of funds is improved ... than that they're signaling something to the markets ..."

https://youtu.be/j7jPzzjbVuk?si=YSbUW8h2mNktzj_9&t=634

amai

Source code published as PDF? Come on, this should be published on Github.

keepamovin

Damn this is cool. I think text is an underutilized medium for design.

ChuckMcM

I would say, "Looking forward to the github repo with this code in ASCII" but I realize Microsoft would likely not allow that.

pronoiac

I attempted OCR, and while it's not great, it's a start. I considered adding a reference to "software wants to be free!" or the Open Letter, but I'm winding down for the night. https://github.com/pronoiac/altair-basic-source-code

hypercube33

Funny enough last night I was hoping more old 90s Microsoft code got open sourced and I somehow was living under a rock. Maybe one day I'll get to legally dig through NT 3.51 code. especially since it was ported to MIPS and Power iirc. I went on a huge tangent reading about how someone ported leaked ntvdm code to x64. They didn't provide code and I didn't go hunting for the leaked stuff and won't...but I think it's super neat how forward portable some of the stuff NT has is.

jen20

Why would they not allow it? They've published the source to numerous old products (including MS-DOS[1]), and they own GitHub...

[1]: https://github.com/microsoft/MS-DOS

santiagobasulto

Microsoft (and maybe even Bill Gates personally) generated a strong "dislike" sentiment to the hacker community. But we can't deny that he and Paul Allen were pure breed hackers and helped a lot the development of technology. Of course, we all prefer OSS and we'd pick Linus (or insert OSS dev name here) 100 times over one of the "evil capitalists"/s, but nevertheless they have to be recognized.

linguae

I’m a 90s kid (born in 1989), and I remember the days of the anti-trust lawsuit, “Internet Exploder,” the Slashdot Borg icon, and resentment from Mac users, WordPerfect users, Netscape users, and others who strongly disliked the Microsoft monopoly.

Still, there’s something about Microsoft of that era. Bill Gates was “one of us,” a passionate nerd. This was an era where nerds like Jobs, Woz, and Gates ruled. The 1990s and the 2000s felt exciting, and it felt like technology was making the world a better place.

I must admit, even though I was firmly in the Jobs and Woz camp in the 2000s, I also fondly remember Windows 2000, Visual Studio 6, and pre-ribbon Microsoft Office. Contrary to Steve Jobs’ opinion, I believe Microsoft has occasionally exhibited great taste :). For better or for worse, the 1990s was peak Microsoft.

Something happened in the 2010s. It seems like the tech industry has become just like any other industry that has gotten entrenched, and today’s tech leaders simply don’t inspire me like how the leaders of previous eras did. Today’s Web media companies are far scarier than 1990’s Microsoft ever was.

Then again, I was a mere child in the 1990s, and I became an adult in the 2010s, and so I could be looking at the 1990s through childhood memories.

accurrent

As a fellow 90s kid... I feel the same. I remember when Sony Ericson launched their first camera phone and how we used to go through PC upgrades like crazy. My dad would go to the bookstore to buy magazines with new linux distros included for free. Now I have laptop thats 4 years old and Im not excited to buy my next (heck I dont even need to buy my next... I can run LLama.cpp just fine on my current).

I do think the barrier to entry in tech has significantly increased. There was a wave of internet companies like Uber, (and their global equivalents) that benefited massively from providing local internet services. In the 2000s and 2010s the tech companies benefited massively from global poverty alleviation efforts to get users in remote regions on line. The push to get people online meant that millions of people in poor countries had access to social media and ads but not basic needs like toilets. As the tech companies saturated the emerging markets, covid began to hit. The stark inequalities began to be rubbed in. The big tech companies also dont really have any real material asset to fight over anymore. Their markets have been largely captured. As a big tech firm the game is now to maintain your lead. The industry is now run by MBAs, not hackers anymore.

miohtama

Now those poor people are online globally and can scroll Instagram.

feketegy

I think what you are remembering is just nostalgia, people tend to remember the good things and shut out the bad ones.

I still remember how Microsoft, under Gates, acted like a robber baron to the whole tech community. You had a nice product? It was instantly copied by Microsoft, and they pulled the rug under you because they could.

You wanted open standards? It was a war purely because Microsoft wanted it to be. It was either Microsoft's way or the highway.

I consider pre-2008 and pre-iPhone launch to be the peak of the Internet, but it's all downhill from that year onwards.

Gud

Yes, agree. Bill Gates was never ”one of us”. He came from extreme privilege and used his advantage to kill off much more innovative technologies. BeOS, anyone?

no_wizard

>It seems like the tech industry has become just like any other industry that has gotten entrenched, and today’s tech leaders simply don’t inspire me like how the leaders of previous eras did. Today’s Web media companies are far scarier than 1990’s Microsoft ever was.

Three letters: MBA

When the MBA's came into the tech industry everything got stale, 'safe' and unexciting as they want to leech their fucking hands over everything in the name of maximal profit.

Private Equity follows MBAs so you see more PE firms getting into tech during the same period. Same story, fucking leeches leeching makes the leeches happy at the expense of society. In fact, it seems PE firms and MBA grads love making the world an actively terrible place

I hate business bros. They ruin god damn everything.

marssaxman

Gates showed his true colors right up front with the "Open Letter to Hobbyists", and pursued the rest of his career in like fashion. It's not just about Microsoft versus open source: many of us already resented their strong-arming, dominance-oriented, rent-seeking, ownership-hungry monopolistic approach to computing before the free software movement had really gotten going, or the term "open source" had even been invented.

azemetre

It is interesting, especially in the context of Gates childhood upbringing and his extremely rare access to computers and computer training.

Something that maybe one or two other dozen children had access to in the entire country during that time (60s/70s).

You have to also remember that computers were also seen as a public good for a large swath of users during this time too.

Makes you wonder how different this industry would be if we replaced Bill Gates singular childhood privilege with that of Bill Joy's (which looks like your typical middle class experience)? Only instead of one child, you could probably help thousands of children.

ForOldHack

Berkeley's Willard Jr high school bussed 7th grade student s up to Lawrence hall of science in the fall of 1970. I was the 3rd grade younger brother that started to print all the code, so I could walk through it. There were at least 70 to 80 kids there, and only two years later, they added two more 30 person labs. Dartmouth BASIC and HP basic were at most universities. While punched card FORTRAN was as most engineering schools.

BeetleB

This is consistent with the parent comment. You can have a hacker mindset and be totally against open source. They are orthogonal qualities.

mmooss

How were they "pure bread hackers"? Was Gates especially proficient with code? I've never heard that. From what I read, they were the enemies of hackers. This really seems like looking back with rose-colored glasses.

My understanding of Microsoft's success was it came from marketplace maneuvers, many ranging from unethical to illegal, not from quality or innovative hacking. Compare Windows with any contemporaneous MacOS, for example. They took over the office productivity software market by illegally leveraging their Windows monopoly. Their initial and core success - getting DOS on IBM PCs, which led to the Windows monopoly - was simply leaping at a business opportunity, I think even before they began developing the product.

Didn't they generate fake errors for Windows running on DR-DOS, or something like that, even though it ran fine? Do you mind that they tried to destroy and monopolize the open web (thank you Mozilla!)?

einr

My understanding of Microsoft's success was it came from marketplace maneuvers, many ranging from unethical to illegal, not from quality or innovative hacking. Compare Windows with any contemporaneous MacOS, for example.

So it's 1992, and OS/2 still isn't happening.

But you can get a 386 at 16 or 25 MHz complete with maybe a 40 MB hard drive, color monitor, 256-color VGA, a couple megabytes of memory, and licenses for MS-DOS and Windows 3.1 for $1000 or less. This will let you do a lot of computer things.

If you want to run Mac OS, the very cheapest Macintosh you can get is the Mac Classic, and it costs $1695 for a 7 MHz 68000, a single floppy drive, no hard drive, and a 1-bit black and white display. This will enable you to do a lot fewer computer things, much more slowly.

Macs were very expensive. Windows was good enough. It wasn't better, necessarily, but it wasn't strong-armed onto the market by shady maneuvers either -- at the time of Windows 3 and 95 it was genuinely good "product-market fit". Microsoft, from its earliest days, was good at leveraging mass-market hardware to deliver "good enough" software that worked for the majority of people. Of course they did shady stuff that increased their dominance, but Windows would have sold like hotcakes either way.

Didn't they generate fake errors for Windows running on DR-DOS, or something like that, even though it ran fine?

IIRC that code existed, but was commented out in the final build.

TheOtherHobbes

It was strong-armed because Gates used family connections to negotiate a preferential deal for DOS with IBM, and then forced PC manufacturers to bundle DOS and/or Windows.

That was then leveraged into attempts to force Internet Explorer onto Internet users. Which was when the antitrust suit happened.

Meanwhile IE and Windows were notorious for being terrible pieces of software.

Windows was always horrifically buggy and crash prone - far behind even the most basic standards of professional reliability. 3.x was sort of usable but extremely simple, 9x was just horrific, and it wasn't until XP that it became almost reliable.

Both IE and Windows were also a security disaster.

Between the bugs and the security flaws Microsoft wasted countless person-centuries for its users.

The one thing that MS did right was create a standard for PC software. That was the real value of Windows - not the awfulness of the product but the ecosystem around it, which created Visual Basic for beginner devs and Windows C++ classes for more experienced devs, and kick-started a good number of bedroom/small-scale startup businesses.

For context, PCs at this time were also extremely expensive. The price of a Mac Classic got you a brain damaged 80286 and not much RAM. You had to spend $3k or more to get the newer 80386, and the 486/66 was just starting to become available.

dboreham

Gates was obviously a proficient coder. I think you're experiencing a time compression phenomenon here: this was the mid 70s. Microsoft the big bad Microsoft that everyone knows about didn't appear until around the mid 90s. 20 years later, although from the perspective of 2025 those two eras seem pretty much adjacent.

pjmlp

And then all the folks that used to write M$ served the open Web in a plate to Google, now with the exception of Safari, what we have is ChromeOS, in browser, and being packaged in "native" apps.

lou1306

> Was Gates especially proficient with code?

Well the article is obviously a biased source, but surely developing a) an ALTAIR emulator for PDP-10s (Allen) and b) a pretty much full-fledged BASIC interpreter that was exclusively tested on top of said emulator (Gates) in two months, in the 70s was not the kind of stuff an average coder would have done.

thenthenthen

This also how I read the story, they were ‘basically’ salesmen/marketing guys with good investor storytime. The hacking part was hacking together code on the plane before the meeting to rake in the cash?

timewizard

BASIC was written as a team in Albuquerque. Altair had good reason to support their efforts. They then purchased DOS from Seattle Computer Products after they made a deal with IBM to sell it. To be fair Xerox gave away the office suite and the hardware to anyone who asked.

russellbeattie

Allen wrote an 8080 emulator on a time shared PDP-10 in order for Gates to write the assembly code that implemented a BASIC interpreter - complete with I/O and editor - for a sight-unseen system, all in 4 kilobytes. And it worked the first time it was run.

I've been in the industry for 30 years and I couldn't do all that without serious Googling (or AI help nowadays).

Doing it as 20-somethings in the mid 70s definitely qualifies them as pure breed hackers to me.

Seanambers

As a kid of the late 90s i feel like it was kinda unfair.

Back in the day (70s(?)80s) computers shipped with the programming language manual. All I got was a CDROM of ENCARTA and a slip to mail in for a restore set of MS DOS / WIN 3.1 diskettes(which was sorely needed I might add).

musicale

I wish Microsoft would bring back Encarta!!

russellbeattie

In the mid 70s you got a badly mimeographed copy of the schematics and a bag of parts.

In the late 70s to early 80s you got a programming manual, but you had to save your programs on cassette tapes.

In the late 80s, you got glossy manuals which showed you how to turn on the computer, hook up a printer and load a program from DOS.

In the early 90s, the manuals were plain paper, smaller, and had instructions on how to use a mouse, and explained what a window is. Plus the mail-ins.

Mid-90s (CD-ROM "multimedia machines") you got a sheet of paper which told you to load the interactive tutorial from the included CD.

Late 90s you got 5000 hours of AOL. Plus another CD filled with co-branded crapware like CorelDraw Lite for Dell.

2000s+ crapware pre-installed, driver CD and a warranty card.

So really, the time period with the included programming manual was just a few years. And mostly all you did is print Hello World over and over again on the screen. So don't be too jealous.

urbandw311er

It’s also kind of difficult to hate on a guy that devoted his remaining decades to literally saving tens of thousands of lives around the world.

executesorder66

It's very easy to hate on him for that very reason. He's just buying a good reputation for the fraction of his wealth that is completely insignificant.

If I could buy that kind of reputation by tossing a few coins into the void, why not? Especially after I've stolen billions from others.

devsda

Its possible. He is following the same tactics as when he was head of MS [1].

1. https://www.wired.com/story/opinion-the-world-loses-under-bi...

jxjnskkzxxhx

Yes, it's called pulling the ladder up behind you. I don't think "he was a hacker" mitigates anything whatsoever.

bigstrat2003

Meh, I don't prefer OSS. I prefer tools that work well, whatever they may be. For a long time, that was Windows. Microsoft went to hell, so now it's Linux. I'll happily use commercial solutions so long as they're good.

bigger_cheese

In "In the Beginning was the Command Line" Neal Stephenson used a car analogy to describe consumer operating systems, I always thought his analogy was pretty apt:

To paraphrase him a little bit:

Microsoft sells Family Station Wagons. Spare parts are cheap and plentiful and if they breakdown there is a huge network of dealerships with mechanics on staff.

Apple sells Luxury Sedans - nicer to drive than the station wagons but spare parts are uncommon and the oil changes are expensive.

Linux is represented by a group of volunteer hackers organized by consensus giving away tanks for free made from sophisticated space aged materials.

The observation he makes is 90% of people go straight to the biggest dealership and buy a station wagon without ever looking at any of the other options. They will make a bunch of excuses like "I Don't know how to maintain a tank" and get angry when told "You don't know how to maintain a station wagon either", in the end their argument boils down to "can't you see everyone else is buying a station wagon"...

muppetman

Yup! Which is why I use Linux but you better believe I've got Sublime Text installed (and licensed!)

gjsman-1000

[flagged]

executesorder66

Yeah, corporations have the resources to do that kind of investment in Linux which random hobbiests don't.

But why do they do it in the first place, instead of investing in their own obviously supiriour massively invested in OS's? Because Linux IS better, and the whole idea of it is better than some closed source crap. By nature of the GPL license it will snowball and everyone else will be left behind.

quickslowdown

This is wrong, Linux had plenty of momentum before RedHat specifically was purchased by IBM.

I'm sure that helped its momentum in the corporate space, where it was already very present, but the whole family of Linux was very well established in servers, firewalls (more BSD than Linux here), mobile devices, embedded hardware, etc

skissane

> This is wrong, Linux had plenty of momentum before RedHat specifically was purchased by IBM.

I’m not defending their overall argument, but I don’t think they are talking about the 2018 Red Hat acquisition, rather IBM’s 2000 announcement they were investing a billion dollars in Linux: https://www.cnet.com/tech/tech-industry/ibm-to-spend-1-billi...

IBM has been a big contributor to Linux long before buying Red Hat

hall0ween

I don’t have an opinion on the issue, cause it’s outta my wheelhouse. Well, aside from civility, which you need to work on.