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