mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-24 21:34:16 +00:00
Make QoS slowdown respect timeout setting
This commit is contained in:
parent
d53ebd1ba5
commit
9718db0ebd
@ -90,7 +90,7 @@ module CNT(
|
||||
* QoS enable period is 196.588 us - 210.630 us */
|
||||
reg [3:0] QS;
|
||||
always @(posedge CLK) begin
|
||||
if (QoSCSr) QS <= 15;
|
||||
if (QoSCSr) QS <= SlowTimeout[3:0];
|
||||
else if (SndQoSCSr) QS <= 15;
|
||||
else if (QS==0) QS <= 0;
|
||||
else if (TimerTick) QS <= QS-1;
|
||||
|
Loading…
Reference in New Issue
Block a user