forked from jbush001/RISC-Processor
-
Notifications
You must be signed in to change notification settings - Fork 0
aromis/risc_processor
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is the first processor I designed, a 5 stage MIPS-ish RISC. It features direct mapped L1 instruction and data caches, branch prediction, and register forwarding. I made a number of mistakes in this design: - The contents of the data cache are modeled as having a single read/write port. Because of the way tag lookup occurs, this means you can't have a write immediately after a read because there is contention for the port. There is a bunch of logic in the issue stage to avoid this condition. - I made the design purely structural, which was unnecessary and harder to read. - Many of my RAMs are modeled as async read (including the register file). This prevents using the built-in block RAM resources, using more area, and slows down the max clock rate.
About
Simple 32-bit RISC processor
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published