Modularized project; mux, clock, and reg done; Progress on RegFile

This commit is contained in:
jose.rodriguezlabra
2019-02-15 12:24:26 -05:00
parent d147e12073
commit 7aa2cfff2a
5 changed files with 202 additions and 25 deletions

View File

@@ -0,0 +1,27 @@
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 02/15/2019 12:19:52 PM
// Design Name:
// Module Name: FetchUnit
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module FetchUnit(input wire clk,
input wire [8:0] AddrIn,
output wire [8:0] AddrOut);
endmodule