Subversion Repositories HelenOS

Rev

Rev 2726 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2726 Rev 4687
1
/*++
1
/*++
2
 
2
 
3
Copyright (c) 1999  Intel Corporation
3
Copyright (c) 1999  Intel Corporation
4
   
4
   
5
Module Name:
5
Module Name:
6
 
6
 
7
    initplat.c
7
    initplat.c
8
 
8
 
9
Abstract:
9
Abstract:
10
 
10
 
11
    Functions to make SAL and PAL proc calls
11
    Functions to make SAL and PAL proc calls
12
 
12
 
13
Revision History
13
Revision History
14
 
14
 
15
--*/
15
--*/
16
#include "lib.h"
16
#include "lib.h"
17
 
17
 
18
//#include "palproc.h"
18
//#include "palproc.h"
19
 
19
 
20
VOID
20
VOID
21
InitializeLibPlatform (
21
InitializeLibPlatform (
22
    IN EFI_HANDLE           ImageHandle,
22
    IN EFI_HANDLE           ImageHandle,
23
    IN EFI_SYSTEM_TABLE     *SystemTable
23
    IN EFI_SYSTEM_TABLE     *SystemTable
24
    )
24
    )
25
 
25
 
26
{
26
{
27
    PLABEL  SalPlabel;
27
    PLABEL  SalPlabel;
28
    UINT64  PalEntry;
28
    UINT64  PalEntry;
29
 
29
 
30
    LibInitSalAndPalProc (&SalPlabel, &PalEntry);
30
    LibInitSalAndPalProc (&SalPlabel, &PalEntry);
31
}
31
}
32
 
32