-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext.v
36 lines (34 loc) · 768 Bytes
/
ext.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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 00:22:27 12/09/2018
// Design Name:
// Module Name: ext
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module ext(
input [1:0] extop,
input [15:0] in,
output reg [31:0] out
);
always @ (in, extop ) begin
case(extop)
2'b 00 : out <= {16'h 0000, in};
2'b 01 : out <= {{16{in[15]}}, in};
2'b 10 : out <= {in, 16'h 0000};
default : out <= 32'b0;
endcase
end
endmodule