Skip to content

Commit e19b094

Browse files
committed
Adding chip input/output buffers
1 parent 57f06cb commit e19b094

File tree

4 files changed

+34
-2
lines changed

4 files changed

+34
-2
lines changed

lambdalib/auxlib/rtl/la_ibuf.v

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//#############################################################################
2+
//# Function: Single Ended Chip Input Buffer (with ESD protection) #
3+
//# Copyright: Lambda Project Authors. All rights Reserved. #
4+
//# License: MIT (see LICENSE file in Lambda repository) #
5+
//#############################################################################
6+
7+
module la_ibuf
8+
#(parameter PROP = "DEFAULT")
9+
(
10+
input in, // positive input
11+
output z // output
12+
);
13+
14+
assign z = in;
15+
16+
endmodule

lambdalib/auxlib/rtl/la_idiff.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//#############################################################################
2-
//# Function: Differential Input Buffer #
2+
//# Function: Differential Chip Input Buffer (with ESD protection) #
33
//# Copyright: Lambda Project Authors. All rights Reserved. #
44
//# License: MIT (see LICENSE file in Lambda repository) #
55
//#############################################################################

lambdalib/auxlib/rtl/la_obuf.v

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//#############################################################################
2+
//# Function: Single Ended Chip Output Buffer (with ESD protection) #
3+
//# Copyright: Lambda Project Authors. All rights Reserved. #
4+
//# License: MIT (see LICENSE file in Lambda repository) #
5+
//#############################################################################
6+
7+
module la_obuf
8+
#(parameter PROP = "DEFAULT")
9+
(
10+
input in, // positive input
11+
output z // output
12+
);
13+
14+
assign z = in;
15+
16+
endmodule

lambdalib/auxlib/rtl/la_odiff.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//#############################################################################
2-
//# Function: Differential Output Buffer #
2+
//# Function: Differential Chip Output Buffer (with ESD protection) #
33
//# Copyright: Lambda Project Authors. All rights Reserved. #
44
//# License: MIT (see LICENSE file in Lambda repository) #
55
//#############################################################################

0 commit comments

Comments
 (0)