Copy byte at DS:[SI] to ES:[DI]. Update SI and DI.Algorithm:
Copy byte at DS:[SI] to ES:[DI]. Update SI and DI.
Algorithm:
MOVSB
ORG 100h CLD LEA SI, a1 LEA DI, a2 MOV CX, 5 REP MOVSB RET a1 DB 1,2,3,4,5 a2 DB 5 DUP(0)