Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- pushgprs:
- push AX
- push BX
- push CX
- push DX
- ret
- popgprs:
- pop DX
- pop CX
- pop BX
- pop AX
- ret
- cursor_moveleft:
- call pushgprs
- call cursor_getpos
- inc DL
- call cursor_setpos
- call popgprs
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement