This website requires JavaScript.
Explore
Help
Register
Sign In
luke
/
sv2v
mirror of
https://github.com/zachjs/sv2v.git
Watch
1
Star
0
Fork
You've already forked sv2v
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
05cafc3d2a
sv2v
/
test
/
core
/
package_unique.v
7 lines
112 B
Verilog
Raw
Normal View
History
Unescape
Escape
avoid name conflicts when elaborating packages
2022-07-18 04:02:15 +02:00
module
top
;
wire
P_T
;
assign
P_T
=
0
;
initial
$display
(
"
%b
"
,
P_T
)
;
check for conflicts with unused declarations
2022-07-19 03:05:21 +02:00
reg
[
1
:
0
]
P_U
=
0
;
avoid name conflicts when elaborating packages
2022-07-18 04:02:15 +02:00
endmodule