Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
127cc67321882ce909151f14c6210a410c1e2cc6
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.2.2.2--always_comb.sv
blob: 6f1a5815d03944a4c72f33746e2e6b196aa200e0 [
file
]
/*
:name: always_comb
:description: always_comb check
:should_fail: 0
:tags: 9.2.2.2
*/
module
always_tb
();
wire a
=
0
;
reg b
=
0
;
always_comb
b
=
~
a
;
endmodule