Guest User

Untitled

a guest
Nov 14th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. ; You may customize this and other start-up templates;
  2. ; The location of this template is c:\emu8086\inc\0_com_template.txt
  3.  
  4. org 100h
  5.  
  6. .data
  7. .code
  8.  
  9. main proc
  10. mov ax, 10
  11. mov bx, 5
  12. mov cx, 10
  13.  
  14. call fx
  15.  
  16.  
  17. ret
  18. endp
  19.  
  20.  
  21.  
  22. fx proc
  23.  
  24. endp
Add Comment
Please, Sign In to add comment