Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-10
/
10.4.1--blocking-assignment.sv
blob: 5bd7cde3885c3b896f170dffbf3b814810006f77 [
file
] [
log
] [
blame
]
/*
:name: blocking_assignment
:description: blocking assignment test
:should_fail: 0
:tags: 10.4.1
:type: simulation parsing
*/
module
top
();
logic a
=
3
;
logic b
=
2
;
initial
begin
a
=
1
;
b
=
a
;
$display
(
":assert: (%d == %d)"
,
a
,
b
);
end
endmodule