Home  Site Map  Instruction Index 

INS  -  Input Instruction


The INS instruction is used to input data from Port DX in to memory address at DI. This instruction is typically used with a CX counter and either REP or LOOP to repeat the task mutltiple times.

This command has 1 part the Instruction.

Assembly
Sample
Description   16 bit Machine
  Code
INSB;  8 bit version Input BYTES
;  from Port DX into DI
  6C
INSW;  16 bit version Input WORDS
;  from Port DX into DI
  6D