Starting from:
$30

$24

Lab 10: Mini MIPS Solution

Submission timestamps will be checked and enforced strictly by the CourseWeb; late submissions will not be accepted. Check the due date of this lab on the CourseWeb. Remember that, per the course syllabus, if you are not marked by your recitation instructor as having attended a recitation, your score will be cut in half.







In this lab, we will build a datapath and control for a simplistic processor. Since this can be a complex task for a MIPS architecture, we will build for a toy architecture { MiniMIPS.




MiniMIPS has only a handful of instructions, two registers (A and B), no memory instructions like lw and sw, and no control transfer instructions like beq or j. By following this guild, you will build MiniMIPS. You can take the same concepts that you learn and apply them to your MIPS processor.




The MiniMIPS Instruction Set




The instruction set is very simple { there are only ve opcodes. There are only two registers A and B. The registers are 8 bits. Every instruction has a destination register (either A or B). The source registers are always A and B, so there is no need to specify them. The instructions are:




Opcode
Assembly
De nition






0000
set $r, imm8
$r = imm8






0010
add $r
$r= A + B






0011
sub $r
$r= A B






0100
or $r
$r= A j B
0101
and $r
$r= A & B









In these instructions, $r refers to either register A or B. Register A is $r = 0, and register B is $r = 1.




Unlike MIPS, which has R, I, and J format instructions. MiniMIPS has only one instruction format, a 16-bit instruction containing a 4-bit opcode, a 1-bit destination register, and an 8-bit immediate:




15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
0


































Opcode
$r
Unused




Immediate







































Instructions are addressed by these 16-bit words, and their addresses are 8 bits; therefore, a program can contain up to 256 of these 16-bit instructions.




Components and Design




To implement MiniMIPS, requires only a few components, many of which are available in Logisim’s library. The components include the following:




Registers: hold A and B, 8 bits each




ROM: 8-bit address and 16-bit data width (instruction memory)




Program Counter: 8-bit register




Fetch Adder: 8-bit adder incremented by 1 on each cycle (for the program counter register)







CS/COE 0447 | Computer Organization and Assembly Language Page 1
Lab 10: Mini MIPS










ALU: four functions: add, sub, and, and or




Control Unit: decodes opcode for multiplexers and ALU




Multiplexer: select between imm8 for the set instruction and output of ALU




Fields: extract opcode, register and immediate from instruction (splitter)




Decoder: generates control signals from opcode




Start by opening Logisim to a blank circuit and save it as lab10.circ. In the following steps, we will add or create the necessary components:




First, add a memory to hold instructions. Use a \ROM" from the Memory library. By default, Logisim creates a ROM with an 8-bit address and an 8-bit data width. The ROM will hold the program, composed of 16-bit MiniMIPS instructions. Thus, we need to change the data width to 16 bits. Click on the ROM in the main circuit grid. This will open a window pane on the left with the ROM’s attributes. One of the attributes is \Data Bit Width". Con gure this to 16-bits by clicking on it, and scrolling down to 16.



Memory typically has a select signal that controls whether the memory will do any operation. The ROM has a select signal labeled Sel. We need to set this to logic-1 using a constant from the Wiring library. Draw a line, using the pointer, between the 1 and the Sel of the ROM.



We need a program counter. The PC is just a register. Select the Memory library components, and then grab a Register. Add it to the circuit. By default, the Register is 8-bits, which matches the address size of MiniMIPS (8-bit address for instructions). Connect the Q output of the register to the A input of the ROM. This connects the PC to the address input of the ROM.



Each clock cycle, we need to increment the PC by 1 instruction. Thus, we need to add an adder to the circuit and wire it to the PC. Use the build-in adder from the Arithmetic library. By default, the adder is 8 bits. Connect the output of the Adder to the D input of the PC. We need to add a Constant 1 for addition. Then connect the Q output of the PC to the rst input of the Adder. Lastly, the PC register has an En, or \enable", signal. When set to 1, the register can be written on a clock cycle. Since we update the PC every cycle, connect the enable to the 1-bit constant 1 you connected to the ROM’s Sel. The Fetch portion of the datapath should now be completed.



We need two register A and B. Add two registers to the circuit diagram. We will connect these registers to the output of the ROM, so you will probably want to put the registers to the right of the ROM in the diagram.



Now, build a simple four-function ALU. We will do this as a subcircuit called \ALU". Include 8-bit AND, OR, adder, and subtractor components. Go ahead and try this! (HINT: AND and OR gates can be con gured to have two 8-bit inputs). Use a 4:1 multiplexer to select one of the four ALU functions. Connect input 0 to the output of the adder, input 1 to the subtractor, input 2 to the AND and input 3 to the OR. Add a 2-bit input pin, labelled \Operation". Finally, add two 8-bit input pins and an 8-bit output pin.















CS/COE 0447 | Computer Organization and Assembly Language Page 2
Lab 10: Mini MIPS










Add the ALU subcircuit to the main diagram. For our simple instruction set, the ALU’s inputs come only from the A and B registers. So, connect the Q signal of registers A and B directly to the A and B inputs of the ALU. We also need to connect the ALU’s output to the registers. Notice that the registers can be written from either the immediate of the set instruction or the result of the ALU instructions. So, we need a 2:1 multiplexer between the output of the ALU and the inputs of registers A and B; call it \SetMux". Connect input 0 of SetMux to the output of the ALU. For now, leave input 1 unconnected. Next connect the multiplexer’s output to the D input of A and B.



Add a subcircuit called \Fields" to get access to individual elds in an instruction. The Fields subcircuit will contain a splitter which separates its 16-bit input (one instruction) into three outputs: a 4-bit opcode, a 1-bit register, and an 8-bit immediate. Be sure to label your outputs appropriately!



Now, we need to build the control unit, a.k.a, Decoder. The decoder is nothing more than a combination circuit. It takes as an input the opcode from the instruction to output the control signals. The control signals we need are the operation signals for the ALU and the select signals for SetMux. You can draw truth table and then minimize the table with pencil and paper. When you are done with the Decoder, it should appear similar to the Figure below:




































We are ready to nish wiring everything on the main circuit. Make sure you have the following components on the main circuit: ROM, Fields, Decoder, ALU, A and B registers, PC register, an adder for PC, and a multiplexer SetMux. Connect the Immediate output of Fields to the second input of SetMux. This is the second possible location for a value to write to the register. Connect the Opcode output of Fields to the decoder. Connect the Operation output of the Decoder to the ALU. Connect the Select output of the Decoder to the SetMux. At this point, everything should be connected, except the clock and the Enable signals for registers A and B.



Notice that every instruction writes a register. So, we need to set Enable for either A or B on every clock cycle. When the register eld is 0, we should enable the A register



and disable the B register. When the register eld is 1, we should enable the B register and disable the A register. Thus, we have two boolean functions: A :$r and B $r, assuming $r is the register from the instruction (i.e., the Register output of Fields). Add the necessary AND and NOT gates to your circuit and wire them.




Lastly, add a clock. Connect the clock to all registers: PC, A, and B. Assuming you have done everything correctly, you should be ready to test the processor!



Test the processor by poking at the ROM. Look at the attributes and select \Click to Edit" for the Data Content. Let’s try the instruction set A, 1. This instruction has the






CS/COE 0447 | Computer Organization and Assembly Language Page 3
Lab 10: Mini MIPS










value 0x0001. Put the value 0x0001 in the rst location of the ROM (address 00, upper left corner). Try putting teh value 0x0802 in the second location of the ROM; this corresponds to the instruction set B, 2. Close the data window and reset the simulation with \Simulate"




! \Reset". Now, simulate the circuit by ticking the clock. You should see the values of the A and B registers change to 1 and 2, respectively.




Congratulation! You have got a working processor! Write a few more instructions and add them to the ROM to test the functionality of your add, subtract, OR, and AND instructions as well.



Notes




If you feel con dent, you can build the circuit directly without following the steps above. Here are some notes that may help:




The Enable control signals for A and B can be tied directly to the $r bit in the instruction.




The Enable control signals are set as A :$r and B $r. Either A or B are enabled on every clock cycle since each instruction has a destination register.




Fields can be implemented simply as a wire splitter. Some like to put it inside a subcircuit to hide the splitter, but this is not really necessary for this simple case.




The ROM is con gured with 8-bit address and 16-bit data width for the 16-bit instructions. The Select signal should be set.




ALU is implemented as a components from Logisim with a 4:1 multiplexer. Some like to hide the ALU in subcircuit. For my example, we use 00 for add, 01 for sub, 10 for AND, and 11 for OR.




There is a multiplexer called SetMux on the input to the registers. This multiplexer will need to select either the imm8 eld (for set), or the ALU output for all other instructions.




Submission




Submit the le lab10.circ via CourseWeb before the due date stated on the CourseWeb.






































































CS/COE 0447 | Computer Organization and Assembly Language Page 4

More products