Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
861ed7dc3ad91ddad1bf155cd28bdc110f3a5abb
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
disp_parm.v
blob: aee384933b5152cf5d36de361d822378ccf69521 [
file
]
/* From PR#516 */
module
top
();
parameter GEORGE
=
8
'd5;
parameter HARRY = 10;
initial begin
#1;
$display("decimal GEORGE: %0d, HARRY: %0d",GEORGE, HARRY);
$display("binary GEORGE: '
b
%
0b
,
HARRY
:
'b%0b",GEORGE, HARRY);
$finish;
end
endmodule