Readit News logoReadit News
dbcurtis · 6 years ago
I did a tour of duty as a CPU logic designer at Amdahl. The POO was my bible, although it was the 370 version in those days. The thing to remember about ISA specs like this is that they are works of fiction. The contract goes: “If you programmers are willing to pretend this is how the machines work, we will build a machine that pretends to work that way.” That concept is the key innovation of the 360 system architecture, attributed to Gene Amdahl.

After leaving Amdahl I worked for a while in Electronic Design Automation. One year at the IEEE Design Automation Conference I met a random person at a happy hour who was an ex-IBM OS programmer. He said that he once spent a year rewriting a part of the OS to use a particular instruction entirely because “Amdahl didn’t have it yet.” Says I: “When was this?” ... “Ah, at that time part of my job was adding that instruction to the Amdahl CPU.”

The conversation felt like an old Mad Magazine “Spy vs. Spy” cartoon. We were both bemused.

cptnapalm · 6 years ago
By pure random luck and if you know, has Amdahl's UTS survived anywhere? Mainframe software seems to simply disappear into the void after its useful life is over.
dbcurtis · 6 years ago
Sorry, I have no idea.
GnarfGnarf · 6 years ago
In 1970, I actually got paid a salary to write applications in this Assembler language. Abjectly inefficient, but what a blast!
throwawayForMe2 · 6 years ago
I did about 5 years of assembler in the late 80’s for a major bank (IMS and CICS systems). A set of structured macros supposedly from NASA, made it quite readable. These added if/else, case, loop constructs, etc.

Around 2012(?), working for another major bank, I was asked to make an enhancement to a funds transfer system written in assembler, as no one else left in the pool of programmers had any experience. I had to dig out my old text book which I luckily found, and my old yellow card, and relearned enough to make the change.

protomyth · 6 years ago
360 Assembly was actually pretty ok once you get past the whole EBCDIC thing. I still judge other companies documentation versus the banana book.
opsunit · 6 years ago
I was being paid to do the same in 1999!
michaelwilson · 6 years ago
When IBM introduced the AP (attached processor) and MP (multi-processor) systems, they had to add instructions that were guaranteed to be atomic since both processors had uniform access to main memory. Interestingly enough, they only added two instructions (compare and swap, compare double and swap) to support these configurations.

(I think there might have been one or two other supervisor mode-instructions, but there were weirdos like "stop the other processor", for example).

RickJWagner · 6 years ago
I remember reading a similar document for my shop's IBM 4381.

When I started mainframe programming, I was given a pocket-sized 'yellow card' that listed all the machine instructions and arguments. It was invaluable for dump-reading.

My co-workers (who were all older when I started) had similar cards, except in different colors. There were white, pink and green cards, too. You could tell when somebody started programming by the color of their card.

I kept mine, still have it.

BXLE_1-1-BitIs1 · 6 years ago
The card is now a 116 page booklet aka Reference Summary
cptnapalm · 6 years ago
Coincidentally, I finished reading "IBM's 360 and Early 370 Systems" earlier today. I highly recommend it and its predecessor, "IBM's Early Computers" from the MIT press. The business aspect is there, of course, but it's really about the development of the machines themselves, down to how they developed the transistors they used along with who did it.
DonHopkins · 6 years ago
The Adolescence of P-1 was set on IBM System/360 mainframes.

https://en.wikipedia.org/wiki/The_Adolescence_of_P-1

>Reception

>BYTE criticized The Adolescence of P-1 for what it stated were unrealistic expectations for an artificial intelligence running on 1970s IBM mainframes. It suggested that the author could have set the novel in the 1990s and use fictional future IBM computers to make the plot more plausible.

https://archive.org/stream/byte-magazine-1981-09/BYTE_Vol_06...

MarkMMullin · 6 years ago
Heh - had to go look up storage protect, aka 'red light errors' . Kept getting in trouble in the beginning of my career when I didn't realize snooping about lit up lights on the front panel . :-)
BXLE_1-1-BitIs1 · 6 years ago
That's the easy one. z/Arch is way more intricate. As noted in my moniker, you can do fun stuff with BXLE,as described in the "Difficult Code" section on FINCH (aka program fetching) in an OS/360 PLM (Program Logic Manual).