Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Zachjs
/
basic
/
named_block.sv
blob: 21346e0a922c62ac668ed2ec8925006b43c06004 [
file
] [
log
] [
blame
] [
edit
]
module
top
;
// The below blocks must be named when converted to Verilog-2005 because it
// contains a data declaration.
initial
begin
integer i
;
i
=
1
;
$display
(
"%08d"
,
i
);
end
initial
begin
integer i
;
i
=
1
;
$display
(
"%08d"
,
i
);
end
endmodule