Skip to content

Commit

Permalink
increase write hold time #781
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Gardner-Stephen committed Feb 18, 2024
1 parent 11ebacd commit b18085f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vhdl/expansion_port_controller.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,10 @@ begin
-- But we mark the write complete now, so that back-to-back
-- writes can be scheduled with max timing margin
cart_write_in_progress <= '0';
when 1 | 2 =>
when 1 =>
-- Allow longer hold time for writes
null;
when 2 =>
-- Release key bus lines after a short hold time, and start any new
-- access we have under way, but only if we don't already have an
-- access happening.
Expand Down

0 comments on commit b18085f

Please sign in to comment.