diff options
| author | matt <matt@NetBSD.org> | 2003-03-04 08:34:12 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2003-03-04 08:34:12 +0000 |
| commit | fb2cebb5779e85ff32df53e315c5306d8e79c16b (patch) | |
| tree | 6e89ae0f5d7daa986b58882adf0fb3f0b7c24548 /sys | |
| parent | 12931a397ceebdd0f74f27049cf7a1868a0f4f93 (diff) | |
Pass the address of the intrframe to the ext_intr routine.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/powerpc/powerpc/trap_subr.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/trap_subr.S b/sys/arch/powerpc/powerpc/trap_subr.S index 5c6e30a592c..b4fa91d9f49 100644 --- a/sys/arch/powerpc/powerpc/trap_subr.S +++ b/sys/arch/powerpc/powerpc/trap_subr.S @@ -1,4 +1,4 @@ -/* $NetBSD: trap_subr.S,v 1.35 2003/02/21 15:14:08 matt Exp $ */ +/* $NetBSD: trap_subr.S,v 1.36 2003/03/04 08:34:12 matt Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -816,6 +816,7 @@ s_sctrap: .globl _C_LABEL(extint_call) extintr: INTRENTER + mr 3,1 /* make intrframe available */ _C_LABEL(extint_call): bl _C_LABEL(extint_call) /* to be filled in later */ |
