Skip to content

Commit 8a5ea17

Browse files
committed
Moving alias module to padring
1 parent 373ef46 commit 8a5ea17

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lambdalib/iolib/rtl/la_pt.v renamed to lambdalib/padring/rtl/la_ioalias.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/**************************************************************************
3-
* Function: IO Alias Module
3+
* Function: IO Alias Utility Module
44
* Copyright: Lambda Project Authors. All rights Reserved.
55
* License: MIT (see LICENSE file in Lambda repository)
66
*
@@ -17,8 +17,8 @@
1717
*
1818
*************************************************************************/
1919

20-
module la_pt (.io1(a),
21-
.io2(a));
20+
module la_ioalias (.io1(a),
21+
.io2(a));
2222

2323
inout wire a;
2424

lambdalib/iolib/rtl/la_ioshort.v renamed to lambdalib/padring/rtl/la_ioshort.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
/*****************************************************************************
1+
/**************************************************************************
22
* Function: Simulation Friendly IO Alias Module
33
* Copyright: Lambda Project Authors. All rights Reserved.
44
* License: MIT (see LICENSE file in Lambda repository)
55
*
66
* Docs:
77
*
8-
* Instantiates the la_pt inout alias module and adds a loop breaking
8+
* Instantiates the la_ioalias inout alias module and adds a loop breaking
99
* logic for some tools that don's support tran, alias,and port aliasing.
1010
*
1111
* WARNING: The port list alias features is in the verilog standard,
1212
* but not well supported by open source tools. Not recommended for
1313
* portable designs.
1414
*
15-
****************************************************************************/
15+
*************************************************************************/
1616
module la_ioshort (inout a,
1717
inout b,
1818
input a2b
@@ -24,7 +24,7 @@ module la_ioshort (inout a,
2424
assign b = a2b ? a : 1'bz;
2525
`else
2626
// verilog_lint: waive-start module-port
27-
la_pt la_pt (a,b);
27+
la_pt la_ioalias (a,b);
2828
// verilog_lint: waive-end module-port
2929
`endif
3030

0 commit comments

Comments
 (0)