summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halsni4x/mips/xxipiint.s
blob: fbdb99fd53489cdb91eab35b672a346e4b18ca3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//      TITLE("Interprocessor Interrupts")
//++
//
// Copyright (c) 1993-1994  Microsoft Corporation
//
// Module Name:
//
//    xxipiint.s
//
// Abstract:
//
//    This module implements the code necessary to field and process the
//    interprocessor interrupts on a MIPS R4000 Duo system.
//
// Environment:
//
//    Kernel mode only.
//
// Revision History:
//
//--

#include "halmips.h"



        SBTTL("Interprocessor Interrupt")
//++
//
// Routine Description:
//
//    This routine is entered as the result of an interprocessor interrupt.
//    Its function is to acknowledge the interrupt and transfer control to
//    the standard system routine to process interprocessor requrests.
//
// Arguments:
//
//    s8 - Supplies a pointer to a trap frame.
//
// Return Value:
//
//    None.
//
//--


        LEAF_ENTRY(HalpIpiInterrupt)
//
// Inter processor interrupt processing
//

	move	a0,s8
	j	HalpProcessIpi	    // acknowledgement Ipi

        .end    HalpIpiInterrupt