Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-21
/
21.2--strobe.sv
blob: 129256df1b5ba340c7aae107341c1d708e6631c6 [
file
] [
log
] [
blame
]
/*
:name: strobe_task
:description: $strobe test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module
top
();
logic clk
;
int
a
;
always
@(
posedge clk
)
begin
$strobe
(
a
);
$strobeb
(
a
);
$strobeo
(
a
);
$strobeh
(
a
);
end
endmodule