Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-21
/
21.2--monitor.sv
blob: ed6bc0c0ceb3cf1462eeff415f74fbd0c264b94f [
file
] [
log
] [
blame
]
/*
:name: monitor_task
:description: $monitor test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module
top
();
int
a
;
initial
begin
$monitoron
;
$monitor
(
a
);
$monitorb
(
a
);
$monitoro
(
a
);
$monitorh
(
a
);
$monitoroff
;
end
endmodule