-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddr.v
More file actions
32 lines (28 loc) · 691 Bytes
/
addr.v
File metadata and controls
32 lines (28 loc) · 691 Bytes
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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 03/04/2023 11:53:54 AM
// Design Name:
// Module Name: addr
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module addr
#( parameter N = 32 // N is the number of bits in the adder
)(
input [N-1:0] X, Y, // the two input vectors
output [N-1:0] Z // the sum output vector
);
assign Z = X + Y;
endmodule