Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Base7:
  2. mov bl, 7
  3.  
  4. div bl ;divide by 7
  5. mov dl, al ;move quotient to dl
  6. mov al, ah ;move remainder to al
  7. mov ah, 0 ;reset ah
  8. mov al, dl
  9.  
  10. call writedec ;write al
  11. ;start loop again
Add Comment
Please, Sign In to add comment