Skip to content

Commit

Permalink
Ajout de Banc de registres
Browse files Browse the repository at this point in the history
  • Loading branch information
CeilingFan committed Feb 29, 2012
1 parent 5be1dc4 commit b767b02
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions BancDeRegistres.vhd
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
--========================= Controller.vhd ============================
-- ELE-340 Conception des systèmes ordinés
-- HIVER 2010, Ecole de technologie supérieure
-- Auteur : Jonathan Riel-Landry, Kevyn-Alexandre Pare, Sean Beitz
-- =============================================================
-- Description: Banc De Registres
-- =============================================================

LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;
USE ieee.std_logic_unsigned. all;
USE WORK.MIPSPackage.ALL;

ENTITY BancReg IS
PORT (
ra1, ra2, wa3, wd3: IN STD_LOGIC_VECTOR (4 DOWNTO 0);
RegWrite: IN STD_LOGIC ;
rd1, rd2: OUT STD_LOGIC_VECTOR (4 DOWNTO 0)
);
END BancReg;

ARCHITECTURE BancRegArchitecture OF BancReg IS



BEGIN

END BancRegArchitecture;

0 comments on commit b767b02

Please sign in to comment.