Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this assignment you will design a small version of MIPS processor. Its name is MiniMIPS. In MiniMIPS, there are 8 registers each holding 32
In this assignment you will design a small version of MIPS processor. Its name is MiniMIPS. In MiniMIPS, there are 8 registers each holding 32 bit numbers. The instruction width is 16 bits instead of 32 bits in MIPS. There are two types of instructions in MiniMIPS. R-type: Op (4bits) Rs (3bits) Rt (3bits) Rd(3bits) Func(3bits) I'-type: Op (4bits) Rs (3bits) Rt (3bits) Imm (10bits) The instructions of MiniMIPS are given in below table: Instr AND ADD SUB XOR NOR OR ADDI ANDI ORI NORI BEQ BNE SLTI LW SW Opcode 0000 0000 0000 0000 0000 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 Func 000 001 010 011 100 101 XXX XXX XXX XXX XXX XXX XXX XXX XXX They all work similar to the actual MIPS Green Sheet. As immediate field is 10 bits you should extend it to 32 bits. Do not forget, only the instruction width and number of registers are different remaining part is same as MIPS. The register contents are 32 bits. Zero register is always 0. All other rules in MIPS are also rules of MiniMIPS
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started