home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / pcrte224.zip / SOURCE.ZIP / PACKET.ASM < prev    next >
Assembly Source File  |  1992-06-09  |  1KB  |  37 lines

  1. ;;************************************************************************* 
  2. ;;                      packet.asm      packet.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 some code use in Packet Driver processing 
  19. ;;  This is done in a seperate module because TASM cannot assemble it if
  20. ;;  it is not broken up.
  21. ;;
  22. ;;*****************************************************************************
  23.  
  24. ;; a fake entry so that this module will not produce errors if
  25. ;; the packet stuff is not defined.  This entry is normally redefined
  26. ;; in wd8003.inc
  27. PKT_REAL_DEFINE MACRO dummy
  28. ENDM
  29.  
  30.     include declare.inc
  31.  
  32.     IRP idx,<1,2,3,4,5,6,7,8>
  33.         PKT_REAL_DEFINE idx         ;; try defining them all
  34.     endm
  35. END
  36.  
  37.