Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. https://github.com/0xLeo/asm_shapes
  2.  
  3. get_key macro
  4.  
  5. local get_key
  6.  
  7. get_key:
  8.  
  9. ; check for keystroke in keyboard buffer:
  10. mov ah, 1
  11. int 16h
  12. jz get_key
  13.  
  14. ; remove keystroke from buffer
  15. mov ah, 0
  16. int 16h
  17. ; keystroke stored at al
  18. endm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement