mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-22 21:51:28 +00:00
typo
This commit is contained in:
parent
a75b999f13
commit
b08195a9cf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue