Forum Discussion
sstrell
Super Contributor
6 years agoI wouldn't think this is a bug. Backslash is a line extension for Tcl, not Verilog. You can add backslashes if you were to add these assignments to your .qsf file since that file is Tcl based. A .sv file is not.
#iwork4intel
BLee15
Occasional Contributor
6 years agoSystemVerilog 2005 (IEEE Std 1800-2005) Section 3.6 String literals says this:
A string literal must be contained in a single line unless the new line is immediately preceded by a \ (back slash). In this case, the back slash and the new line are ignored.
It seems that .sv should support backslash+newline inside string......