mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-29 17:17:44 +02:00
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
|