Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
24b1c6d5d1c71459ed0a09056e0f352c125383ac
/
.
/
src
/
Testcases
/
Zachjs
/
resolve
/
reference.v
blob: 551834880f6351bc6bc4852c9adf1742eb748425 [
file
]
`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