aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt/opt_ff_sat.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/opt/opt_ff_sat.v')
-rw-r--r--tests/opt/opt_ff_sat.v25
1 files changed, 11 insertions, 14 deletions
diff --git a/tests/opt/opt_ff_sat.v b/tests/opt/opt_ff_sat.v
index fc1e61980..5a0a6fe37 100644
--- a/tests/opt/opt_ff_sat.v
+++ b/tests/opt/opt_ff_sat.v
@@ -1,15 +1,12 @@
-module top(
- input clk,
- input a,
- output b
- );
- reg b_reg;
- initial begin
- b_reg <= 0;
- end
-
- assign b = b_reg;
- always @(posedge clk) begin
- b_reg <= a && b_reg;
- end
+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