Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.3.1--sequential_block.sv
blob: b9b06135f5dbb36510074b8821207125d7d5f8f2 [
file
] [
log
] [
blame
]
/*
:name: sequential_block
:description: sequential block check
:should_fail: 0
:tags: 9.3.1
*/
module
sequential_tb
();
reg a
=
0
;
reg b
=
0
;
reg c
=
0
;
initial
begin
a
=
1
;
b
=
a
;
c
=
b
;
end
endmodule