Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e4de98c2f51ca2a9a11f5ec5c925073e087e1e05
/
.
/
third_party
/
tests
/
Google
/
chapter-21
/
21.2--write.sv
blob: 78c829458d5347f045481ab9255a4327e11e7057 [
file
] [
log
] [
blame
]
/*
:name: write_task
:description: $write test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module
top
();
initial
begin
int
val
=
1234
;
$write
(
val
);
$writeb
(
val
);
$writeo
(
val
);
$writeh
(
val
);
end
endmodule