Guest User

Untitled

a guest
May 20th, 2018
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. COD3 SEGMENT PARA 'CODE' ; code segment
  2. ;definition
  3. PUBLIC PROCED2 ; procedure declaration
  4. ;as public
  5. ASSUME CS: COD3
  6. PROCED2 PROC FAR ; procedure definition
  7. ; The instructions of the called procedure
  8. RETF ; back to the procedure which
  9. ;made the call
  10. PROCED2 ENDP ; end procedure
  11. COD3 ENDS ; end segment
  12. END ; end of second module
Add Comment
Please, Sign In to add comment