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