-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHILO.v
44 lines (41 loc) · 1000 Bytes
/
HILO.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
42
43
44
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 22:17:54 12/06/2015
// Design Name:
// Module Name: HILO
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module hilo(
input clk,
input rst,
input enabler,
input wire[31:0] memory2writeback_HI,
input wire[31:0] memory2writeback_LO,
output reg[31:0] hilo_hi,
output reg[31:0] hilo_lo
);
always @ (posedge clk) begin
if(rst == 1) begin
hilo_hi <= 0;
hilo_lo <= 0;
end else begin
if (enabler == 1) begin
hilo_hi <= memory2writeback_HI;
hilo_lo <= memory2writeback_LO;
end
end
end
endmodule