3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 22:34:07 +00:00

Merge pull request #159 from jix/fix-dpmem-example

examples: Fix use of SVA value change expressions
This commit is contained in:
Jannis Harder 2022-05-11 11:23:57 +02:00 committed by GitHub
commit d10e472edf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,9 +47,9 @@ module top (
(* gclk *) reg gclk;
always @(posedge gclk) begin
assume ($stable(rc) || $stable(wc));
if (!init) begin
assume ($stable(rc) || $stable(wc));
if ($rose(rc) && shadow_valid && shadow_addr == $past(ra)) begin
assert (shadow_data == rd);
end