Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-21
/
21.2--display.sv
blob: dd6e28102041f87cbd599b67f12bd1a9eb3472e8 [
file
] [
log
] [
blame
]
/*
:name: display_task
:description: $display test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module
top
();
initial
begin
int
val
=
1234
;
$display
(
val
);
$displayb
(
val
);
$displayo
(
val
);
$displayh
(
val
);
end
endmodule