diff options
author | denny <denny@cvs.openbsd.org> | 1997-07-23 06:58:35 +0000 |
---|---|---|
committer | denny <denny@cvs.openbsd.org> | 1997-07-23 06:58:35 +0000 |
commit | 9f95e5fa8786d06e27db299b890e830e050a71bc (patch) | |
tree | d1db30e69f9dca0c85b062d00ae0a4a98706192c /sys/arch/i386 | |
parent | 750d9a7574292e97f1554912f02eb28d3b23b062 (diff) |
Add AppleTalk netisr. Only tested (indeed, only compiled) on mac68k port.
Add options NETATALK to your config to try it out.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/isa/icu.s | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/icu.s b/sys/arch/i386/isa/icu.s index e6a46d28ef1..555d758e42f 100644 --- a/sys/arch/i386/isa/icu.s +++ b/sys/arch/i386/isa/icu.s @@ -1,4 +1,4 @@ -/* $OpenBSD: icu.s,v 1.8 1996/08/16 02:54:02 deraadt Exp $ */ +/* $OpenBSD: icu.s,v 1.9 1997/07/23 06:58:34 denny Exp $ */ /* $NetBSD: icu.s,v 1.45 1996/01/07 03:59:34 mycroft Exp $ */ /*- @@ -157,6 +157,9 @@ IDTVEC(softnet) #endif DONET(NETISR_IP, _ipintr) #endif +#ifdef NETATALK + DONET(NETISR_ATALK, _atintr) +#endif #ifdef IMP DONET(NETISR_IMP, _impintr) #endif |