how to define a multi line macro in verilog?
问题 I am relatively new to verilog (a VHDL user), and in order to improve my skills i built my test environment using verilog (my QC use their own env). In my env, I emulate a master that force random stimuli on the lines (i2c master). since i didn't really want to use a real master and wanted only a 'well behaved' master, i created the following macros to provide me with the i2c communications: `define writeChipId(addr)\ sda = 1\ #7500 sda = addr[3];\ #2500 sda = addr[2];\ #2500 sda = addr[1];\