3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-27 15:35:51 +00:00

Merge branch 'master' into fifo_example

Abbreviates additional btor instructions.
This commit is contained in:
KrystalDelusion 2022-06-07 12:00:10 +12:00
commit a808a0738c
3 changed files with 50 additions and 2 deletions

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