Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Zachjs
/
resolve
/
reference.v
blob: 551834880f6351bc6bc4852c9adf1742eb748425 [
file
] [
log
] [
blame
]
`define FANCY_SEEING_YOU 1337
module top;
localparam width = 5;
input [width-1:0] i;
output [width-1:0] o;
assign o = i + 1'b1;
initial begin
$display(width);
$display(`
FANCY_SEEING_YOU
);
end
endmodule