Skip to content

Commit

Permalink
fixed ctrl s not working
Browse files Browse the repository at this point in the history
  • Loading branch information
KaseyHDL committed Apr 17, 2024
1 parent 5d445c2 commit ab81376
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/controller.v
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//============================================================================//
// Controller
//============================================================================//

`define default_netname none

module controller (
Expand Down Expand Up @@ -44,12 +45,12 @@ module controller (
reg [24:0] timer_count;

timer turn_timer_u1 (
.CLK ( CLK ),
.RST_N ( RST_N ),
.CLR ( clr_turn ),
.TIMER_VAL ( timer_count ),
.START_TMR ( go_turn ),
.PULSE ( timeout_turn )
.CLK (CLK),
.RST_N (RST_N),
.CLR (clr_turn),
.TIMER_VAL (timer_count),
.START_TMR (go_turn),
.PULSE (timeout_turn)
);

always @(posedge CLK or negedge RST_N) begin
Expand Down

0 comments on commit ab81376

Please sign in to comment.