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