Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
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