Tagged Questions

18
votes
7answers
2k views

Why do stacks typically grow downwards?

I know that in the architectures I'm personally familiar with (x86, 6502, etc), the stack typically grows downwards (i.e. every item pushed onto the stack results in a decremented SP, not an ...
5
votes
4answers
162 views

Good books on the history of computer architecture? [closed]

I'm very interested in the history of computer architecture. Various elders that I've talked to have shared anecdotes and bits of wisdom that I've never seen in a computer science textbook. I'm ...
5
votes
2answers
85 views

Materials for reading various assembly languages?

This is a wiki question to gather useful references for learning assembly languages for various architectures. I recently attempted to read the source code for Basic Pdp-1 Lisp from 1964, and needed ...
5
votes
2answers
331 views

Types of computers

I have read somewhere recently something related to the kind of computers. The reading was related to Lisp and Emacs that fit into an "architectural" model more like a Turing Machine. In the other ...
2
votes
2answers
407 views

LP64, LLP64 and the IL32 transition

During the transition from 16 to 32 bit in the 80s, int was either 16 or 32 bit. Using the current 64 bit transition nomenclature, I understand there was a pretty even spread of ILP32 and LP32 ...