diff options
author | David Shah <davey1576@gmail.com> | 2019-08-10 17:14:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-10 17:14:48 +0100 |
commit | f9020ce2b35f2fc205fc71cb095efce1a24fd86d (patch) | |
tree | 73ac462dd723cc389070cea893ddc9c1998339a2 /tests/opt/opt_rmdff_sat.v | |
parent | f54bf1631ff37a83733c162e6ebd188c1d5ea18f (diff) | |
download | yosys-f9020ce2b35f2fc205fc71cb095efce1a24fd86d.tar.gz yosys-f9020ce2b35f2fc205fc71cb095efce1a24fd86d.tar.bz2 yosys-f9020ce2b35f2fc205fc71cb095efce1a24fd86d.zip |
Revert "Wrap SB_LUT+SB_CARRY into $__ICE40_CARRY_WRAPPER"
Diffstat (limited to 'tests/opt/opt_rmdff_sat.v')
-rw-r--r-- | tests/opt/opt_rmdff_sat.v | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/opt/opt_rmdff_sat.v b/tests/opt/opt_rmdff_sat.v deleted file mode 100644 index 5a0a6fe37..000000000 --- a/tests/opt/opt_rmdff_sat.v +++ /dev/null @@ -1,12 +0,0 @@ -module top ( - input clk, - output reg [7:0] cnt -); - initial cnt = 0; - always @(posedge clk) begin - if (cnt < 20) - cnt <= cnt + 1; - else - cnt <= 0; - end -endmodule |