Aller au contenu

assert instruction

There is an instruction that displays messages in the simulator's dialog window. It is called assert This instruction allows several levels of criticality:

  • note
  • warning
  • error
  • failure (arrêt de la simulation)
1
2
assert SR_Value1 > SR_Value2 report "SR_Value1 = " &integer'image(SR_Value1) severity warning;
assert SR_Value1 > SR_Value2 report "SR_Value2 = " &integer'image(SR_Value2) severity warning;

The message is displayed if the Boolean condition is false.