Created
December 15, 2012 04:44
-
-
Save leopic/4291374 to your computer and use it in GitHub Desktop.
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
ORG 1000H | |
TABLA DB DUP(5,2,10,4,5,0,4,8,1,9) | |
FIN DB ? | |
SUMA DB ? | |
ORG 2000H | |
MOV AL, 0 | |
MOV CL, OFFSET FIN-OFFSET TABLA | |
MOV BX, OFFSET TABLA | |
LOOP: ADD AL, [BX] | |
INC BX | |
DEC CL | |
JNZ LOOP | |
HLT | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment