Files
sugar-lissajous/source/assert.vh

10 lines
240 B
Plaintext
Raw Normal View History

2021-02-28 18:59:56 +03:00
`ifndef _ASSERT_VH_
`define _ASSERT_VH_
`define assert(assertion) \
if (!(assertion)) begin \
$error("ERROR: Assertion failed in %m: assertion");\
end
`endif