Forum Discussion

wenna's avatar
wenna
Icon for New Contributor rankNew Contributor
1 year ago

Direct operations on strings will result in synthesis errors.

Consider the following code, which fails synthesis. module test1 (y, clk); output wire y; input wire clk; wire wire1; assign wire1 = $signed((~"")); assign y = wire1; endmodule Howe...