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