You really deduced it from user manual description? How?.
First, try answer to two questions:
Q1: Is there one-clock lag between timer approach zero and loading IVALUE-1?.
Q2: Is there one-clock lag between loading IVALUE-1 and first count-down?.
It is usual to suspect that one-clock lag may be present or not In Q1,Q2 or both.
But nothing stated in user guide about those lags, therefore it is most logically staigtforward to assume they absent.
Depending on answers for Q1, Q2, timer will behaves differently:
suppose IVALUE=4:
C1: no,no: ...2,1,2,1,2,1... T=IVALUE-2 (most straightforfard logical deduction from user guide statements)
C2: yes.no: ...2,1,0,2,1,0,2,1,0... T=IVALUE-1
C3: no,yes: ...3,2,1,3,2,1,3,2,1... T=IVALUE-1
C4: yes,yes: ...3,2,1,0,3,2,1,0,3,2,1,0... T=IVALUE ( most convenient behavior for timer)
So, If you deduced you answer from same user guide I have, it probably incorrect and can't help me.
And if your answer is really correct, I also still need to know which case is true: C2 or C3.