home *** CD-ROM | disk | FTP | other *** search
/ PC Press: Internet / PC_PRESS.ISO / software / dos / misc / inar-100.exe / SRC / PCROUTE / IP_DL6.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-05-21  |  1.2 KB  |  34 lines

  1. ;;************************************************************************* 
  2. ;;                         ip_dls.asm       ip_dls.asm
  3. ;;*************************************************************************
  4. ;;
  5. ;;  Copyright (C) 1989 Northwestern University, Vance Morrison
  6. ;;
  7. ;;
  8. ;; Permission to view, compile, and modify for LOCAL (intra-organization) 
  9. ;; USE ONLY is hereby granted, provided that this copyright and permission 
  10. ;; notice appear on all copies.  Any other use by permission only.
  11. ;;
  12. ;; Northwestern University makes no representations about the suitability 
  13. ;; of this software for any purpose.  It is provided "as is" without expressed 
  14. ;; or implied warranty.  See the copywrite notice file for complete details.
  15. ;;
  16. ;;*****************************************************************************
  17. ;;
  18. ;;  This module just defines the per data link layer code for the IP module.
  19. ;;  This is done in a seperate module because TASM cannot assemble it if
  20. ;;  it is not broken up.
  21. ;;
  22. ;;*****************************************************************************
  23.  
  24. IP_DL_PACKET_NEEDED    EQU    1
  25.     include declare.inc
  26.  
  27.     if num_dls ge 6
  28.         IP_DL_PACKET_in_BX_ES %myip, 6
  29.         DL_IP_R_RETURN 6
  30.             ;; This does NOT fall through
  31.     endif
  32.  
  33. END
  34.