DIGITAL LOGIC DESIGN TERM PROJECT SOlution

$35.00 $24.00

General Info   You are expected to design and implement a processor which supports instruction set: (AND, OR, ADD, LD, ST, ANDI, ORI, ADDI, XOR, XORI, JUMP, BEQ, BGT, BLT, BGE, BLE). Processor will have 10 bits address width and 20 bits data width. Processor will have 5 parts as follows. Register File will hold…

You’ll get a: . zip file solution

 

 
Categorys:

Description

5/5 – (2 votes)

General Info

 

You are expected to design and implement a processor which supports instruction set: (AND, OR, ADD, LD, ST, ANDI, ORI, ADDI, XOR, XORI, JUMP, BEQ, BGT, BLT, BGE, BLE). Processor will have 10 bits address width and 20 bits data width. Processor will have 5 parts as follows. Register File will hold register values and signal to write into any register. There will be 16 registers in processor. Instruction Memory will be a read-only memory and instructions will be stored in this component. If the current instruction is not one of the J,BR; the next instruction will be fetched and executed consecutively from this memory. Data Memory will be read-write memory which will store data. Program will be able to read data from data memory, and also store data to this memory. Data Memory will have 10 bits address width, and 20 bits data width. Control Unit will produce proper signals to all datapath components. For example if the instruction is ST, control unit should produce memWrite signal which will allow Data Memory component to write data value on its data input to the address on its address input. Arithmetic Logic Unit (ALU) will compute arithmetic operations ADD,OR,XOR,AND,ADDI,ORI,XORI,ANDI. Operands will be fetched from register+register or register+ immediate value. Result will be stored to the Register File. Control unit should produce proper signals to ALU according to instruction opcode (Every instruction should have distinct operational code). Detailed information about instructions is given below.

 

ADD,AND,OR,XOR will have same form.

 

ADD instruction will add two register, and store result into another register.Structure of instruction is:

 

ADD DST,SRC1,SRC2

 

where SRC1 and SRC2 are source registers, and DST is destination register for the operation.

 

ADDI,ANDI,ORI,XORI will have same form.

 

ADDI instruction will add a register value and immediate value, and store the result into another register.Form of instruction is:

 

ADDI DST,SRC1,IMM

 

where SRC1 is a register, DST is destination register and IMM is immediate value. IMM size will be max available size on your processors design.

 

JUMP instruction will set the Program Counter(PC will hold current instruction’s address) to the given value in the instruction.

 

JUMP ADDR

 

where ADDR will be in PC relative mode. ADDR will be offset and it can be negative. For example:

JUMP 3

 

instruction will set PC to: next instructions address + 3( go forward 3 instruction)

 

JUMP -5

 

instruction will set PC to: next instructions address – 5 (go back 5 instruction)

 

LD instruction will load a value from Data Memory to any register.

 

LD DST,ADDR

 

where DST is a register to load and ADDR is a address in max available bit size. Upper bits of ADDR will be zero extended.

 

ST instruction will store value from a register to Data Memory.

 

ST SRC,ADDR

 

where SRC is a register to fetch data and ADDR is a Data Memory address to store content of the register. Upper bits of ADDR will be zero extended.

 

Branch instruction will compare two operands, then will jump to the address according to this comparison. Your instruction set architecture must reserve 3 bit for branch instructions named as n,z,p which are negative,zero and positive.

 

BEQ OP1,OP2,ADDR

 

will compare registers OP1 and OP2 if they are equal, PC will be set to ADDR(PC-relative). Instructions n,z,p binary values will be 0,1,0.

 

BLT OP1,OP2,ADDR

 

will compare registers OP1 and OP2, if OP1 is less than OP2, PC will be set to ADDR(PC-relative). Instructions n,z,p binary values will be 1,0,0.

 

BGT OP1,OP2,ADDR

 

will compare registers OP1 and OP2, if OP1 is greater than OP2, PC will be set to ADDR(PC-relative). Instructions n,z,p binary values will be 0,0,1.

 

BLE OP1,OP2,ADDR

 

will compare registers OP1 and OP2, if OP1 is less than or equal to OP2, PC will be set to ADDR(PC-relative). Instructions n,z,p binary values will be 1,1,0.

 

BGE OP1,OP2,ADDR

 

will compare registers OP1 and OP2, if OP1 is greater than or equal to OP2, PC will be set to ADDR(PC-relative). Instructions n,z,p binary values will be 0,1,1.

 

Due Date: 22.12.2017

 

 

Design Guide

 

Since you already have your instructions and instruction length(20 bits), your design process includes; instruction set architecture and control unit design. For instruction set architecture you should decide on fields of your instruction like, what will be size of opcode field? How many bits to reserve for register addressing in instruction? What is the maximum possible size for immediate part? Control unit design will include proper signal generation for all datapath. First, you should define a Finite State Machine for your processor. For every instruction you should decide, How many states an instruction will need to execute? What will be the control signals for each state of an instruction ?

 

For example LD instruction will do following operations consecutively:

 

  1. Read PC value

 

  1. Fetch instruction from Instruction Memory with address given in PC

 

  1. Read Data Memory with given address in instruction

 

  1. Write content from Data Memory to destination register.

 

LD instruction will require 4 states to complete. At each state some signals should control components to do right operations. For example at state 1, PCread signal, which will allow PC to put its content on its output, should be activated. Remember that PC is a 20 bit register which holds the current instructions address. At state 2, instruction fetch, instruction will be fetched from Instruction Memory. Therefore, instRead signal will be activated. At state 3, extended address will be put on address input of Data Memory, and dataMemRead signal will be activated. At state 4, we will write output from Data Memory to the register given in instruction. So, regWrite signal will be activated. Remember that, your full Datapath will contain additional combinatorial components like multiplexer,adder, ALU. Control signals have to be designed also for these parts of processor. For example, if current instruction is not setting PC value(not one of JUMP,BR), your next PC value will be PC+1. Since there is two possible next value for PC, there should be a multiplexer at input of PC register with two inputs: PC+1 and PC relative calculated address from instructions JUMP,BR. You should produce a signal for this multiplexer Pcselect signal. Your design must include following signals also. (Remember that there can be additional signals and these signals are dependent on your design ! – Mux signals or other additional signals).

 

ALUcontrol signal should select operation on the Arithmetic Logic Unit (ALU). For example there are 4 arithmetic or logic operation on ALU(AND,OR,XOR,ADD). ALUcontrol must be at least 2 bits and for every operation 2 bit value has to be assigned.

 

MemWrite       signal must be 1 for the final state of ST instruction.

 

PCwrite at the final state of JUMP and Branch instructions, PC will be modified. PCwrite signal must be 1.\

 

Assembly Language

 

You should first design your instruction set architecture(ISA). Draw your ISA to the paper by hand or by any schematic tool. When the details are clear about your processor, you can write an assembler to produce machine code input for your processor. Assembler will convert given mnemonics to the binary codes. You can use any programming language. In assembly language refer registers as R0,R1… R15. Some example instructions:

 

ADD R5,R0,R2 // which will do R5=R0+R2

 

 

ADDI R3,R1,12
// which will do R3=R1+Extend[12]

 

 

LD R5,12
// which will do R5=DataMemory[Extend[12]]

 

 

Logisim Design – Due To: 4.12.2017

 

 

You are required to design your processor on Logisim software. Since there will be different designs, you are responsible for preparing test inputs for your own processor. You are expected to write an assembly code with all instructions defined above. Then, your assembler will convert assembly code to machine code which will be input for your logisim design. You can load this machine code to the Instruction Memory by right clicking on Memory component on Logisim software.

 

 

 

Verilog Design

 

You are required to design your processor on Verilog HDL as final part. Each component in your design should be defined as a module in Verilog HDL. Your assemblers machine code output will be input for your Verilog design. You are responsible for generating test instructions,testing debugging your design on ModelSim software.

 

Final Submission

You can update your previous submissions for improvements or corrections before the final submission. However, if you do not submit any part before its deadline, you won’t get any credit from that part on final submission. ( Don’t wait to start your project until final submission!!! )

 

Submission Details

 

You can submit project as a group(at most 3 members). Please note that, each part are

 

linked to each other. If you do not design a ISA(first part), you won’t have any design to implement on Logisim and Verilog. You should submit your all work under file name `StudentID1_StudentID2_StudentID3.zip` and send an e-mail to the address: lokman.altin@gmail.com before the deadline.