summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halsnip/mips/xxipiint.s
blob: 20c0302ac5bdb41781da3cd18a986fe7e3f32c9c (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