sv2v/test/siloed/reference.v

12 lines
242 B
Verilog

`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