Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-14
/
14.3--clocking-block.sv
blob: 36bbf31cbdd873c43ca184e648cc8892c0892023 [
file
] [
log
] [
blame
]
/*
:name: clocking_block
:description: clocking block test
:should_fail: 0
:tags: 14.3
*/
module
top
(
input clk
);
wire clk
;
clocking ck1
@(
posedge clk
);
default
input
#10ns output #5ns;
endclocking
endmodule