Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
6ce6840a96fc0d4401dbc401b0aecc29d7234654
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
format.v
blob: e04ec6f2b0ddb71cb9814eed921aaee6332c18a9 [
file
]
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