How Modern CPUs Work 8
Aron Schatz writes "ASE Labs explains how a typical single-cycle and multi-cycle CPU operate in today's world and some of the pitfalls associated with them. The assumptions given in the article are based on a RISC architecture, MIPS to be exact. You can read the article here."
credit where it is due (Score:1, Informative)
Re:credit where it is due (Score:1)
Re:credit where it is due (Score:1)
While I'm not trying to imply intentional plagiarism (which, unfortunately I might have done in the article itself), you *really* should attribute your source here, since it really is *very* close to the original.
-Tez
Not really that relevant. (Score:3, Informative)
It is true that modern CPUs use pipelining, but the basic model described here is only used if you want to try and implement your own CPU for fun. Modern CPUs are super-scalar monsters with out-of-order execution and custom internal micro code. But I guess you'll have to start somewhere.
If you want look at what a real modern CPU looks like I recommend Hannibal's excellent CPU articles over at ArsTechnica [arstechnica.com]. He has gone over quite a few different architectures as well as the CPUs found in the X360 and PS3. Interesting reading for all! There are also some articles on stuff like cache and memory architecture.