Skip to content

Instantly share code, notes, and snippets.

@leopic
Created December 15, 2012 04:44
Show Gist options
  • Save leopic/4291374 to your computer and use it in GitHub Desktop.
Save leopic/4291374 to your computer and use it in GitHub Desktop.
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