Opcode |
Instruction |
Description |
---|---|---|
6E |
OUTS DX, m8 |
Output byte from memory location specified in DS:(E)SI to I/O port specified in DX |
6F |
OUTS DX, m16 |
Output word from memory location specified in DS:(E)SI to I/O port specified in DX |
6F |
OUTS DX, m32 |
Output doubleword from memory location specified in DS:(E)SI to I/O port specified in DX |
6E |
OUTSB |
Output byte from memory location specified in DS:(E)SI to I/O port specified in DX |
6F |
OUTSW |
Output word from memory location specified in DS:(E)SI to I/O port specified in DX |
6F |
OUTSD |
Output doubleword from memory location specified in DS:(E)SI to I/O port specified in DX |
Copies data from the source operand (second operand) to the I/O port specified with the destination operand (first operand). The source operand is a memory location, the address of which is read from either the DS:EDI or the DS:DI registers (depending on the address-size attribute of the instruction, 32 or 16, respectively). (The DS segment may be overridden with a segment override prefix.) The destination operand is an I/O port address (from 0 to 65,535) that is read from the DX register. The size of the I/O port being accessed (that is, the size of the source and destination operands) is determined by the opcode for an 8-bit I/O port or by the operand-size attribute of the instruction for a 16- or 32-bit I/O port.
At the assembly-code level, two forms of this instruction are allowed: the "explicit-operands" form and the "no-operands" form. The explicit-operands form (specified with the OUTS mnemonic) allows the source and destination operands to be specified explicitly. Here, the source operand should be a symbol that indicates the size of the I/O port and the source address, and the destination operand must be DX. This explicit-operands form is provided to allow documentation; however, note that the documentation provided by this form can be misleading. That is, the source operand symbol must specify the correct type (size) of the operand (byte, word, or doubleword), but it does not have to specify the correct location. The location is always specified by the DS:(E)SI registers, which must be loaded correctly before the OUTS instruction is executed.
The no-operands form provides "short forms" of the byte, word, and doubleword versions of the OUTS instructions. Here also DS:(E)SI is assumed to be the source operand and DX is assumed to be the destination operand. The size of the I/O port is specified with the choice of mnemonic: OUTSB (byte), OUTSW (word), or OUTSD (doubleword).
After the byte, word, or doubleword is transferred from the memory location to the I/O port, the (E)SI register is incremented or decremented automatically according to the setting of the DF flag in the EFLAGS register. (If the DF flag is 0, the (E)SI register is incremented; if the DF flag is 1, the (E)SI register is decremented.) The (E)SI register is incremented or decremented by 1 for byte operations, by 2 for word operations, or by 4 for doubleword operations.
The OUTS, OUTSB, OUTSW, and OUTSD instructions can be preceded by the REP prefix for block input of ECX bytes, words, or doublewords. See REP/REPE/REPZ/REPNE /REPNZ--Repeat String Operation Prefix for a description of the REP prefix.
This instruction is only useful for accessing I/O ports located in the processor's I/O address space. See Chapter 9, Input/Output, in the IA-32 Intel(R) Architecture Software Developer's Manual, Volume 1, for more information on accessing I/O ports in the I/O address space.
After executing an OUTS, OUTSB, OUTSW, or OUTSD instruction, the Pentium
IF ((PE 1) AND ((CPL > IOPL) OR (VM
1)))
THEN (* Protected mode with CPL > IOPL or virtual-8086 mode *)
IF (Any I/O Permission Bit for I/O port being accessed 1)
THEN (* I/O operation is not allowed *)
#GP(0);
ELSE ( * I/O operation is allowed *)
DEST SRC; (* Writes
to I/O port *)
FI;
ELSE (Real Mode or Protected Mode with CPL IOPL *)
DEST SRC; (* Writes
to I/O port *)
FI;
IF (byte transfer)
THEN IF DF 0
THEN (E)SI (E)SI
+ 1;
ELSE (E)SI (E)SI
- 1;
FI;
ELSE IF (word transfer)
THEN IF DF 0
THEN (E)SI (E)SI
+ 2;
ELSE (E)SI (E)SI
- 2;
FI;
ELSE (* doubleword transfer *)
THEN IF DF 0
THEN (E)SI (E)SI
+ 4;
ELSE (E)SI (E)SI
- 4;
FI;
FI;
FI;
None.
#GP(0) - If the CPL is greater than (has less privilege) the I/O privilege level (IOPL) and any of the corresponding I/O permission bits in TSS for the I/O port being accessed is 1. If a memory operand effective address is outside the limit of the CS, DS, ES, FS, or GS segment. If the segment register contains a null segment selector.
#PF(fault-code) - If a page fault occurs.
#AC(0) - If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3.
#GP - If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit.
#SS - If a memory operand effective address is outside the SS segment limit.
#GP(0) - If any of the I/O permission bits in the TSS for the I/O port being accessed is 1.
#PF(fault-code) - If a page fault occurs.
#AC(0) - If alignment checking is enabled and an unaligned memory reference is made.
For details, see Volume 2A and Volume 2B of the Intel(R) 64 and IA-32 Intel Architecture Software Developer's Manual. For the latest updates on the instruction set information, go to the web site.