mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-08 12:53:12 +02:00
12 lines
242 B
Verilog
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
|