Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
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