Forum Discussion
ak6dn
Regular Contributor
6 years ago'X' as a signal value is not supported in synthesis. Only '0' and '1' are.
So if you want to have a data element represent three unique states (0, 1, X) you need to use 2 bits and encode the values (ie, 00=>0, 01=>1, 1X=>X).
So however much memory you were planning on using, basically double that value.