Time Delay Calculations
Time Delay Calculations
Counters
A loop counter is set up by loading a register with a certain value Then using the DCR (to decrement) and INR (to increment) the contents of the register are updated. A loop is set up with a conditional jump instruction that loops back or not depending on whether the count has reached the termination count.
Counters
The operation of a loop counter can be described using the following flowchart.
Initialize Body of loop
No
Delays
It was shown in Chapter 2 that each instruction passes through different combinations of Fetch, Memory Read, and Memory Write cycles. Knowing the combinations of cycles, one can calculate how long such an instruction would require to complete. The table in Appendix F of the book contains a column with the title B/M/T.
B for Number of Bytes M for Number of Machine Cycles T for Number of T-State.
Delays
Knowing how many T-States an instruction requires, and keeping in mind that a T-State is one clock cycle long, we can calculate the time using the following formula: Delay = No. of T-States / Frequency
For example a MVI instruction uses 7 T-States. Therefore, if the Microprocessor is running at 2 MHz, the instruction would require 3.5 mSeconds to complete.
5
Delay loops
We can use a loop to produce a certain amount of time delay in a program. The following is an example of a delay loop:
MVI C, FFH DCR C JNZ LOOP 7 T-States 4 T-States 10 T-States
LOOP
The first instruction initializes the loop counter and is executed only once requiring only 7 T-States. The following two instructions form a loop that requires 14 TStates to execute and is repeated 255 times until C becomes 0.
6
We need to keep in mind though that in the last iteration of the loop, the JNZ instruction will fail and require only 7 T-States rather than the 10. Therefore, we must deduct 3 T-States from the total delay to get an accurate delay calculation. To calculate the delay, we use the following formula: Tdelay = TO + TL
Tdelay = total delay TO = delay outside the loop TL = delay of the loop
TO is the sum of all delays outside the loop. TL is calculated using the formula
TL = T X Loop T-States X N10
7
Using these formulas, we can calculate the time delay for the previous example:
TO = 7 T-States
Delay of the MVI instruction
Using a single register, one can repeat a loop for a maximum count of 255 times. It is possible to increase this count by using a register pair for the loop counter instead of the single register.
A minor problem arises in how to test for the final count since DCX and INX do not modify the flags. However, if the loop is looking for when the count becomes zero, we can use a small trick by ORing the two registers in the pair and then checking the zero flag.
The following is an example of a delay loop set up with a register pair as the loop counter.
LXI B, 1000H DCX B MOV A, C ORA B JNZ LOOP 10 T-States 6 T-States 4 T-States 4 T-States 10 T-States
LOOP
10
Nested Loops
Nested loops can be easily setup in Assembly language by using two registers for the two loop counters and updating the right register in the right loop.
In the figure, the body of loop2 can be before or after loop1.
No
No
12
Instead (or in conjunction with) Register Pairs, a nested loop structure can be used to increase the total delay produced.
MVI B, 10H MVI C, FFH DCR C JNZ LOOP1 DCR B JNZ LOOP2 7 T-States 7 T-States 4 T-States 10 T-States 4 T-States 10 T-States
LOOP2 LOOP1
13
The calculation remains the same except that it the formula must be applied recursively to each loop.
Start with the inner loop, then plug that delay in the calculation of the outer loop.
Total Delay
TDelay = 57412 X 0.5 mSec = 28.706 mSec
15
The delay can be further increased by using register pairs for each of the loop counters in the nested loops setup. It can also be increased by adding dummy instructions (like NOP) in the body of the loop.
16