Skip to content

Instantly share code, notes, and snippets.

@Dviejopomata
Created October 25, 2016 11:11
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 Dviejopomata/ca861c98ee817900193ffe42bc9018a7 to your computer and use it in GitHub Desktop.
Save Dviejopomata/ca861c98ee817900193ffe42bc9018a7 to your computer and use it in GitHub Desktop.
assembler
_asm{
mov eax,0
mov ebx,0
mov ah,3
mov al,0
b_1: cmp al,ah
jge e_1
; segundo bucle
mov bl,al
inc bl
b_2: cmp bl,ah
jge e_2
inc bl
jmp b_2
e_2:
inc al
jmp b_1
e_1:
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment