Complete 8086 instruction set[STOSW]

STOSW

No operands Store word in AX into ES:[DI]. Update DI. Algorithm: ES:[DI] = AX if DF = 0 then DI = DI + 2 else DI = DI - 2 Example: #make_COM# ORG 100h LEA DI, a1 MOV AX, 1234h MOV CX, 5 REP STOSW RET a1 DW 5 dup(0) Flags: C Z S O P A unchanged