mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-22 21:05:30 +00:00
Merge branch 'master' into fifo_example
Abbreviates additional btor instructions.
This commit is contained in:
commit
a808a0738c
3 changed files with 50 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -117,3 +117,6 @@ Boolector
|
|||
http://fmv.jku.at/boolector/
|
||||
|
||||
https://github.com/boolector/boolector
|
||||
|
||||
To use the ``btor`` engine you additionally need a newer version of btorsim
|
||||
than the boolector setup script builds: https://github.com/boolector/btor2tools
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue