From f9020ce2b35f2fc205fc71cb095efce1a24fd86d Mon Sep 17 00:00:00 2001 From: David Shah Date: Sat, 10 Aug 2019 17:14:48 +0100 Subject: Revert "Wrap SB_LUT+SB_CARRY into $__ICE40_CARRY_WRAPPER" --- tests/opt/opt_rmdff_sat.v | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/opt/opt_rmdff_sat.v (limited to 'tests/opt/opt_rmdff_sat.v') 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 -- cgit v1.2.3