Sign in
foss-fpga-tools
/
third_party
/
verible
/
bbe85ac0e45bb1e955b2b705e5b21d4a00a39b66
/
.
/
verilog
/
tools
/
lint
/
testdata
/
always_ff_non_blocking.sv
blob: 0a10182b57a7f86cd27318a902bb3f4077c8e25d [
file
] [
log
] [
blame
]
module
always_ff_non_blocking
;
always_ff
@(
posedge c
)
begin
a
=
b
;
// [Style: sequential-logic] [always-ff-non-blocking]
end
endmodule