![]() |
|
| << Previous | Next >> | |
| | |
LDDSR
LDISR Block Copy Rabbit 3000A/4000/5000 Instruction
ED 98 LDDSR (DE) = (HL)
BC = BC - 1
HL = HL - 1
repeat while BC != 0ED 90 LDISR (DE) = (HL)
BC = BC - 1
HL = HL + 1
repeat while BC != 0
Description
LDDSR: BC holds the count, which is the number of bytes that will be moved from the source address in HL to the destination address in DE. If the count starts at zero, the number of bytes that will be moved is 65536. After each byte is copied, BC and HL are decremented. The instruction repeats until BC reaches zero.LDISR: BC holds the count, which is the number of bytes that will be moved from the source address in HL to the destination address in DE. If the count starts at zero, the number of bytes that will be moved is 65536. After each byte is copied, BC is decremented and HL is incremented. The instruction repeats until BC reaches zero.These instructions are only useful when prefixed by IOI or IOE. If the prefix is IOI (internal I/O), add 1 clock for each iteration. If the prefix is IOE, add 2 clocks plus the number of I/O wait states enabled.
The V flag is cleared when BC transitions from 1 to 0, which ends the block copy.
Interrupts can occur between different repeats (after the registers have been updated), but not within an iteration. Return from the interrupt is to the first byte of the instruction, which is the I/O prefix byte if there is one.
| Rabbit Instructions | << Previous | Next >> | rabbit.com |