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
master
sv2v
/
test
/
core
/
inc.sv
22 lines
321 B
Systemverilog
Raw
Permalink
Blame
History
module
top
;
integer
x
=
0
;
initial
begin
x
+
+
;
$display
(
x
)
;
end
initial
begin
+
+
x
;
$display
(
x
)
;
end
initial
begin
repeat
(
0
)
;
x
+
+
;
$display
(
x
)
;
end
initial
begin
repeat
(
0
)
;
+
+
x
;
$display
(
x
)
;
end
endmodule
Reference in New Issue
View Git Blame
Copy Permalink