Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
Zachjs
/
lex
/
macro_whitespace.sv
blob: b1bb4889462c1ea0a4cabad311d993859e48c90e [
file
]
`define FOO(a, b) ((a)+(b))
module top;
initial begin
$display(`
FOO
(
1
,
2
));
end
endmodule