Skip to content

Instantly share code, notes, and snippets.

@dragen1860
Created May 14, 2018 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragen1860/cf6f8b06f0af514e31f1be76961ff7f2 to your computer and use it in GitHub Desktop.
Save dragen1860/cf6f8b06f0af514e31f1be76961ff7f2 to your computer and use it in GitHub Desktop.
ddd
MOV SI, Table_A ;POINTER TO TABLE_A.
MOV DI, Table_B ;POINTER TO TABLE_B.
MOV CX, 3 ;ARRAY LENGTH.
REPEAT:
MOV AL, [SI]
MOV [DI], AL
INC SI
INC DI
LOOP REPEAT ;CX-1. IF CX>0 JUMP TO REPEAT.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment