summaryrefslogtreecommitdiffstats
path: root/private/ntos/fw/mips/fwentry.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/fw/mips/fwentry.c')
-rw-r--r--private/ntos/fw/mips/fwentry.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/private/ntos/fw/mips/fwentry.c b/private/ntos/fw/mips/fwentry.c
new file mode 100644
index 000000000..9a04f2b27
--- /dev/null
+++ b/private/ntos/fw/mips/fwentry.c
@@ -0,0 +1,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);
+}