Hello world!

      1 Comment on Hello world!

Welcome!

report "Hello, world!" severity note;

In VHDL, report statements do not necessarily need to be preceded by an assert. The above statement is equivalent to the better known:

assert false report "Hello, world!" severity note;

But the first one is more readable, especially when inserted in IF statements, which can be useful when designing custom checkers for simulation.

1 thought on “Hello world!

Leave a Reply

Your email address will not be published. Required fields are marked *