Complete 8086 instruction set
[STOSB]
STOSB
No operands
Store byte in AL into ES:[DI]. Update DI. Algorithm: ES:[DI] = AL if DF = 0 then DI = DI + 1 else DI = DI - 1 Example: #make_COM# ORG 100h LEA DI, a1 MOV AL, 12h MOV CX, 5 REP STOSB RET a1 DB 5 dup(0) Flags: C Z S O P A
unchanged