File tree Expand file tree Collapse file tree 4 files changed +34
-2
lines changed Expand file tree Collapse file tree 4 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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// #############################################################################
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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// #############################################################################
You can’t perform that action at this time.
0 commit comments