summaryrefslogtreecommitdiffstats
path: root/private/ntos/fw/mips/fwentry.c
blob: 9a04f2b2756ec21a55cea5c1e22f1402d8613317 (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
57
/*++

Copyright (c) 1993  Microsoft Corporation

Module Name:

    fwentry.c

Abstract:

   This module just jumps to the selftest code.

Author:

    Lluis Abello (lluis) 03-Jan-1991

Environment:


Revision History:

--*/

#include "fwp.h"

VOID
FwSelftest(
    IN ULONG Cause,
    IN ULONG Arg1
    );


VOID
FwEntry (
    IN ULONG Cause,
    IN ULONG Arg1
    )

/*++

Routine Description:

     This routine jumps to the selftest code.

Arguments:

     None.

Return Value:

     None.

--*/

{
    FwSelftest(Cause,Arg1);
}