From b08195a9cffdeff14fc93047745033952d20f914 Mon Sep 17 00:00:00 2001 From: Anhijkt Date: Fri, 14 Nov 2025 13:34:58 +0200 Subject: [PATCH] typo --- tests/various/fsm-arst.ys | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/various/fsm-arst.ys b/tests/various/fsm-arst.ys index d3c40444b..4b2c9c66a 100644 --- a/tests/various/fsm-arst.ys +++ b/tests/various/fsm-arst.ys @@ -81,7 +81,7 @@ module self_rs_fsm ( localparam [7:0] S2 = 8'b11000111; reg [7:0] next_state; - wire reset = (reset_reg || next_state == S1); + wire reset = next_state == S1; always @(posedge clk or posedge reset) begin if (reset) begin