Advertisement
captmicro

Untitled

May 29th, 2010
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. pushgprs:
  2.     push AX
  3.     push BX
  4.     push CX
  5.     push DX
  6.     ret
  7. popgprs:
  8.     pop DX
  9.     pop CX
  10.     pop BX
  11.     pop AX
  12.     ret
  13.  
  14. cursor_moveleft:
  15.     call pushgprs
  16.     call cursor_getpos
  17.     inc DL
  18.     call cursor_setpos
  19.     call popgprs
  20.     ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement