Advertisement
Guest User

Untitled

a guest
Apr 14th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mov ax, 10
  2. loop1:
  3.     mov bx, 10
  4. loop2:
  5.         mov cx, 10
  6. loop3:
  7.             dec cx
  8.             jnz loop3
  9.         dec bx
  10.         jnz loop2
  11.     dec ax
  12.     jnz loop1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement