Forum Discussion
Altera_Forum
Honored Contributor
13 years agoHow to implement a DRC to bomb synthesis
Hey guys, our core has a few parameter we would like to implement some basic DRC for. In particular, we would like to have synthesis fail if one parameter is less than another parameter. Is there any...
Altera_Forum
Honored Contributor
13 years agoIn VHDL, you can use the ASSERT. Example:
ASSERT ('0' = '0')
REPORT "'0' is still the same as '0'"
SEVERITY ERROR; So long as the argument is true, the assert will execute.