Question: CSE 224 Project Part 2 1. Design VSCPU with interrupt handling Design VSCPU with interrupt handling and all instructions. Instruction set of VSCPU can be

CSE 224 Project Part 2 1. Design VSCPU with interrupt handling Design VSCPU with interrupt handling and all instructions. Instruction set of VSCPU can be found in lab 5 doc README.md file. You can use Add only VSCPU design as an example which can be found in YULEARN. You can check lab 6 for state machine design of VSCPU with interrupt handling Your design module name, inputs and outputs should be named like below. Designs which are not following this get from this part. module Very SimpleCPU(clk, rst, data_fromRAM, wrEn, addr_toRAM, data_toRAM, interrupt); input clk, rst; input wire (31:0) data_from RAM; input interrupt; output reg wren; output reg(SIZE-1:0) addr_toRAM; output reg(31:0) data_toRAM
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
