Guest User

Untitled

a guest
Feb 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. __asm {
  7. pusha
  8.  
  9. mov ah, 08h
  10. int 21h
  11.  
  12. popa
  13. }
  14.  
  15. cout << "Test" << endl;
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment