Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
format.v
blob: e04ec6f2b0ddb71cb9814eed921aaee6332c18a9 [
file
] [
log
] [
blame
]
module
test
;
wire
[
10
:
0
]
a
=
7
'd 16;
initial
begin
#1;
$display(">%0d<", a);
$display(">%4d<", a);
$display(">%h<", a);
$display(">%4h<", a);
$display("%d, %d", a);
end
endmodule