Git Product home page Git Product logo

mips-32bit's Introduction

MIPS-32BIT

Implement the below two VHDL modules where this task is a group-based task:

  1. Implement the MIPS register file that reads simultaneously from two registers and write into one register.
  • Main module should be called "RegisterFile".
  • RegisterFile RTL should match the desired RTL (refer to lab05).
  • Entity must be match the below: entity RegisterFile is Port ( read_sel1 : in STD_LOGIC_VECTOR (4 downto 0); read_sel2 : in STD_LOGIC_VECTOR (4 downto 0); write_sel : in STD_LOGIC_VECTOR (4 downto 0); write_ena : in STD_LOGIC; clk : in STD_LOGIC; write_data : in STD_LOGIC_VECTOR (31 downto 0); data1 : out STD_LOGIC_VECTOR (31 downto 0); data2 : out STD_LOGIC_VECTOR (31 downto 0)); end RegisterFile;
  • Test before submit (attached RegisterFileTest.vhd)

2.Implement 32 bit full ALU

  • Main module should be called "ALU"
  • ALU functional specifications: ALUOp 0000 for AND 0001 for OR 0010 for ADD 0110 for SUB
  • ALU RTL should match the desired RTL (refer to lab05)
  • Entity must be match the below: entity ALU is PORT( data1 : IN std_logic_vector(31 downto 0); data2 : IN std_logic_vector(31 downto 0); aluop : IN std_logic_vector(3 downto 0); cin : IN std_logic; dataout : OUT std_logic_vector(31 downto 0); cflag : OUT std_logic; zflag : OUT std_logic; oflag : OUT std_logic ); end ALU;

mips-32bit's People

Contributors

sarahashraf200 avatar mo3az99 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.