forked from cquca/nscscc_2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regfile.v
41 lines (36 loc) · 798 Bytes
/
regfile.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 2017/11/02 14:20:09
// Design Name:
// Module Name: regfile
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module regfile(
input wire clk,
input wire we3,
input wire[4:0] ra1,ra2,wa3,
input wire[31:0] wd3,
output wire[31:0] rd1,rd2
);
reg [31:0] rf[31:0];
always @(negedge clk) begin
if(we3) begin
rf[wa3] <= wd3;
end
end
assign rd1 = (ra1 != 0) ? rf[ra1] : 0;
assign rd2 = (ra2 != 0) ? rf[ra2] : 0;
endmodule