Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

neelkshah/MIPS-Processor

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Verilog code for a 32-bit pipelined MIPS processor.

Datapath diagram with control signals is included in PDF format.

Combination of gate-level, dataflow and behavioural modelling.

Remarks:

  • Instruction Memory for 32 32-bit MIPS instructions.
  • 32 32-bit Data Memory locations.
  • Instruction Memory consisting of arithmetic, logical, branch, jump, and memory-access instructions. Immediate arguments and argument registers are hard-coded.
  • TRAP destination is generally OS-specific, and has been left to zero here.
  • 5-stage pipelining; stages are:
    • Instruction Fetch (IF)
    • Instruction Decode (ID)
    • Execute (EX)
    • Memory Access (MEM)
    • Writeback (WB)
  • Data Forwarding Unit to partially resolve hazards in R-type instructions.
  • Hazard Detection Unit to insert stalls (nop cycles) wherever required.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.