diff options
author | Eddie Hung <eddie@fpgeh.com> | 2021-09-09 10:06:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 10:06:31 -0700 |
commit | 96b6410dcb7a82e7be8d4a2025835936f2ca84a7 (patch) | |
tree | 7a81eec8aba9d517d6b5f9042b3a5640a634284d /tests | |
parent | 65316ec9262e1cc10fdc7215f2d3ead579d1e258 (diff) | |
download | yosys-96b6410dcb7a82e7be8d4a2025835936f2ca84a7.tar.gz yosys-96b6410dcb7a82e7be8d4a2025835936f2ca84a7.tar.bz2 yosys-96b6410dcb7a82e7be8d4a2025835936f2ca84a7.zip |
abc9: make re-entrant (#2993)
* Add testcase
* Cleanup some state at end of abc9
* Re-assign abc9_box_id from scratch
* Suppress delete unless prep_bypass did something
Diffstat (limited to 'tests')
-rw-r--r-- | tests/techmap/bug2972.ys | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/techmap/bug2972.ys b/tests/techmap/bug2972.ys new file mode 100644 index 000000000..8ae895f56 --- /dev/null +++ b/tests/techmap/bug2972.ys @@ -0,0 +1,20 @@ +read_verilog -specify <<EOT +(* abc9_box, blackbox*) +module box(input clk, d, output reg q, output do); +parameter P = 0; +always @(posedge clk) + q <= d; +assign do = d; +specify + (posedge clk => (q : d)) = 1; + (d => do) = 1; +endspecify +endmodule + +module top(input clk, d, output q); +box i1(clk, d, q); +endmodule +EOT +hierarchy +abc9 -lut 4 +abc9 -lut 4 |