mirror of https://github.com/zachjs/sv2v.git
13 lines
163 B
Systemverilog
13 lines
163 B
Systemverilog
|
|
`define FOO(a, b) ((a)+(b))
|
||
|
|
|
||
|
|
module top;
|
||
|
|
initial begin
|
||
|
|
$display(`FOO
|
||
|
|
(
|
||
|
|
1
|
||
|
|
,
|
||
|
|
2
|
||
|
|
));
|
||
|
|
end
|
||
|
|
endmodule
|