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
5b4fdfe7df
sv2v
/
test
/
basic
/
attr.v
8 lines
121 B
Verilog
Raw
Normal View
History
Unescape
Escape
support for module attributes (resolves #39)
2019-09-16 05:17:14 +02:00
(
*
a
=
1
*
)
module
top
;
module item traversals visit items with attributes
2019-09-15 22:56:55 +02:00
(
*
foo
=
"
bar
"
*
)
reg
x
;
initial
begin
x
=
1
;
$display
(
x
)
;
end
endmodule