This website works better with JavaScript.
Home
Explore
Help
Sign In
shivakanta_kondapalli
/
new_axi
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Upload files to ''
master
shivakanta_kondapalli
6 months ago
parent
c9dae40f8b
commit
92605228cf
1 changed files
with
23 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+23
-0
assertion.sv
+ 23
- 0
assertion.sv
View File
@@ -0,0 +1,23 @@
module axi_asserttions;
////// handshaking for awvalid & awready
property pro;
@(posedge clk)
disable iff(reset)
(awvalid && !awready) |=> (awvalid && awready) ##1 (!awvalid && !awready);
endproperty
property pro_n;
disable iff(reset)
!($isunknown({awaddr,awlen,awsize,awburst,awvalid})& awburst=2'b 10) |-> (awaddr%(2**awsize)==0)
endproperty
Write
Preview
Loading…
Cancel
Save