Showing posts with label SystemVerilogAssertions. Show all posts
Showing posts with label SystemVerilogAssertions. Show all posts

Monday, July 19, 2021

Sunday, July 18, 2021

Saturday, July 17, 2021

Friday, July 16, 2021

System Verilog Assertions - Simple Boolean Assertions

There are two kind of assertions in System Verilog :1) Immediate Assertion (Assert)2) Concurrent Assertion (Assert Property)1) Immediate Assertion: These are procedural statements (Embedded within a procedural block) and only active within the block. These are similar to the 'if' statement. Example : always @ (negedge clock ) assert !(wr_en...