Complete 8086 instruction set[LODSW]

LODSW

No operands Load word at DS:[SI] into AX. Update SI. Algorithm: AX = DS:[SI] if DF = 0 then SI = SI + 2 else SI = SI - 2 Example: #make_COM# ORG 100h LEA SI, a1 MOV CX, 5 REP LODSW ; finally there will be 555h in AX. RET a1 dw 111h, 222h, 333h, 444h, 555h Flags: C Z S O P A unchanged