mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-12 10:08:39 -08:00
Clean up always blocks
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
@@ -188,7 +188,7 @@ reg [1:0] link_speed_sync_reg_2 = 2'b10;
|
||||
|
||||
assign link_speed = link_speed_sync_reg_2;
|
||||
|
||||
always @(posedge logic_clk) begin
|
||||
always_ff @(posedge logic_clk) begin
|
||||
link_speed_sync_reg_1 <= link_speed_int;
|
||||
link_speed_sync_reg_2 <= link_speed_sync_reg_1;
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user