Created
May 14, 2018 12:30
-
-
Save dragen1860/cf6f8b06f0af514e31f1be76961ff7f2 to your computer and use it in GitHub Desktop.
ddd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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