I want to use several flags in condition for conditional compilation directive, something like this:
`ifdef FLAG1 or FLAG2
// stuff1
`else
// stuff2
`endif
but it seems that `ifdef doesn't support several flags and I don't want to duplicate code for several directives. So, what is the best way to write such condition in verilog?