/opcodes/otdr

Input and Output // OUTI (Out and Increment), OTIR (Out and Increment Repeated), OUTD (Out and Decrement), OTDR (Out and Decrement Repeated)

Description

The contents of the HL register pair are placed on the address bus to select a location in memory. The byte contained in this memory location is temporarily stored in the CPU. Then, after the byte counter (B) is decremented, the contents of Register C are placed on the bottom half (A0 through A7) of the address bus to select the I/O device at one of 256 possible ports. Register B can be used as a byte counter, and its decremented value is placed on the top half (A8 through A15) of the address bus at this time. Next, the byte to be output is placed on the data bus and written to the selected peripheral device. Then, register pair HL is decremented and if the decremented B Register is not 0, the Program Counter (PC) is decremented by two and the instruction is repeated. If B has gone to 0, the instruction is terminated. Interrupts are recognized and two refresh cycles are executed after each data transfer. Note:When B is set to 0 prior to instruction execution, the instruction outputs 256 bytes of data. If B ≠ 0:

Example

Register C contains 07h, Register B contains 03h, the HL register pair contains 1000h, and memory locations contain the following data. 0FFEh 51h 0FFFh A9h 1000h 03h Upon the execution of an OTDR instruction, the HL register pair contain 0FFDh, Register B contains a 0, and a group of bytes is written to the peripheral device mapped to I/O port address 07h in the following sequence: 03h A9h 51h

Opcodes