OTIR

Operation

(C) <- (HL), B <- B-1, HL <- HL+1

Mnemonic

OTIR

Operands

None

b7b6b5b4b3b2b1b0
1 1 1 0 1 1 0 1$ED
1 0 1 1 0 0 1 1$B3

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 incremented. 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 unstruction outputs 256 bytes of data.

Condition Bits Affected

Sis unknown
Zis set.
His unknown
P/Vis unknown
Nis set.
Cis not affected.

Example

Register C contains $07, Register B contains $03, the HL register pair contains $1000, and memory locations contain the following data.

$1000contains$51
$1001contains$A9
$1002contains$03

Upon the execution of

	OTIR

the HL register pair contains $1003, Register B contains a 0, and a group of bytes is written to the peripheral device mapped to I/O port address $07 in the following sequence:

$51
$A9
$03