You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
1To clarify: The 6502 was microprogrammed, so do microprogrammed CPUs that fetch the instruction register in parallel with doing other work count? I guess there'd be quite a few of those earlier than the 6502. Also, keep in mind that if we are talking 6502 or earlier, memory is usually faster than the CPU, so if you want parallelism, you want that on the CPU.dirkt– dirkt2021-01-18 10:00:44 +00:00Commented Jan 18, 2021 at 10:00
-
1@dirkt: I wouldn't really call the 6502 microprogrammed. It does use a PLA internally, but the term "microprogrammed" usually refers to CPUs whose microcode can branch and loop; the 6502, by contrast, advances through states purely in sequence except when it skips to the start of the next instruction, or when it the main sequencer is stalled either because the "ready" signal is low or the CPU is performing a read-modify-write sequence (which is controlled via a different latch).supercat– supercat2021-01-18 17:41:54 +00:00Commented Jan 18, 2021 at 17:41
-
2Why only "microprocessors"? For this I think we have to go back to at least the CDC 6600.dave– dave2021-01-18 23:43:54 +00:00Commented Jan 18, 2021 at 23:43
-
If one excludes delayed loads such as used by MIPS R2000 (where the load operation has a fixed delay during which another independent operation could execute), this ability is called "non-blocking loads". In-order designs which use a scoreboard to determine operation readiness could support such (and load operations are one of the common multicycle and variable latency operations).user20762– user207622021-02-19 16:19:56 +00:00Commented Feb 19, 2021 at 16:19
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. ms-dos), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you