Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.2.2.3--always_latch.sv
blob: 7268e6c5fc274786ab5c5c59fe2bf3ad0c2ffc9d [
file
]
/*
:name: always_latch_expr
:description: always_latch check
:should_fail: 0
:tags: 9.2.2.3
*/
module
always_tb
();
wire a
=
0
;
wire b
=
0
;
reg q
=
0
;
always_latch
if
(
a
)
q
<=
b
;
endmodule