home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mega CD-ROM 1
/
megacd_rom_1.zip
/
megacd_rom_1
/
NETWORK
/
PCRTE222.ZIP
/
SRC.ZIP
/
PACKET.ASM
< prev
next >
Wrap
Assembly Source File
|
1991-12-11
|
1KB
|
37 lines
;;*************************************************************************
;; packet.asm packet.asm
;;*************************************************************************
;;
;; Copyright (C) 1989 Northwestern University, Vance Morrison
;;
;;
;; Permission to view, compile, and modify for LOCAL (intra-organization)
;; USE ONLY is hereby granted, provided that this copyright and permission
;; notice appear on all copies. Any other use by permission only.
;;
;; Northwestern University makes no representations about the suitability
;; of this software for any purpose. It is provided "as is" without expressed
;; or implied warranty. See the copywrite notice file for complete details.
;;
;;*****************************************************************************
;;
;; This module just defines some code use in Packet Driver processing
;; This is done in a seperate module because TASM cannot assemble it if
;; it is not broken up.
;;
;;*****************************************************************************
;; a fake entry so that this module will not produce errors if
;; the packet stuff is not defined. This entry is normally redefined
;; in wd8003.inc
PKT_REAL_DEFINE MACRO dummy
ENDM
include declare.inc
IRP idx,<1,2,3,4,5,6,7,8>
PKT_REAL_DEFINE idx ;; try defining them all
endm
END