diff options
| author | Eddie Hung <eddie@fpgeh.com> | 2019-06-24 22:48:49 -0700 |
|---|---|---|
| committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-24 22:48:49 -0700 |
| commit | 1564eb8b549a0927efa4d2b4cbc479038993024a (patch) | |
| tree | b31c219fd98a8d0c8bb4542c10f5961529bd9635 /tests | |
| parent | f1675b88f63b4c279e368d5ec9e6ca48f528024d (diff) | |
| parent | a19226c174e31da444b831706adf7fa17e9cb9e4 (diff) | |
| download | yosys-1564eb8b549a0927efa4d2b4cbc479038993024a.tar.gz yosys-1564eb8b549a0927efa4d2b4cbc479038993024a.tar.bz2 yosys-1564eb8b549a0927efa4d2b4cbc479038993024a.zip | |
Merge remote-tracking branch 'origin/xaig' into xc7mux
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/various/abc9.v | 5 | ||||
| -rw-r--r-- | tests/various/abc9.ys | 14 |
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/various/abc9.v b/tests/various/abc9.v new file mode 100644 index 000000000..8271cd249 --- /dev/null +++ b/tests/various/abc9.v @@ -0,0 +1,5 @@ +module abc9_test027(output reg o); +initial o = 1'b0; +always @* + o <= ~o; +endmodule diff --git a/tests/various/abc9.ys b/tests/various/abc9.ys new file mode 100644 index 000000000..922f7005d --- /dev/null +++ b/tests/various/abc9.ys @@ -0,0 +1,14 @@ +read_verilog abc9.v +proc +design -save gold + +abc9 -lut 4 +check +design -stash gate + +design -import gold -as gold +design -import gate -as gate + +miter -equiv -flatten -make_assert -make_outputs gold gate miter +sat -verify -prove-asserts -show-ports miter + |
