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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
TITLE CSMKRNL.ASM -- KERNEL TABLES / PROCEDURES
;-------- DO NOT EDIT THIS FILE --------
;
; FILE WAS GENERATED AUTOMATICALY USING AMISDL v3.64.1065 Test Only (Mar 15 2013,03:42:45)
;
;-------- DO NOT EDIT THIS FILE --------
;****************************************************************************
;****************************************************************************
;** **
;** (C)Copyright 1985-2013, American Megatrends, Inc. **
;** **
;** All Rights Reserved. **
;** **
;** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
;** **
;** Phone (770)-246-8600 **
;** **
;****************************************************************************
;****************************************************************************
;****************************************************************************
;---------------------------------------------------------------------------
; INCLUDE FILES
;---------------------------------------------------------------------------
INCLUDE mbiosequ.equ
INCLUDE mbiosmac.mac
INCLUDE equates.equ
;---------------------------------------------------------------------------
; EXTERNS USED
;---------------------------------------------------------------------------
;---------------------------------------------------------------------------
; SEGMENTS USED
;---------------------------------------------------------------------------
STARTUP_SEG SEGMENT PARA PUBLIC 'CODE' USE32
STARTUP_SEG ENDS
CSMOEM_CSEG SEGMENT PARA PUBLIC 'CODE' USE16
CSMOEM_CSEG ENDS
;---------------------------------------------------------------------------
; CSMOEM_CSEG S E G M E N T STARTS
;---------------------------------------------------------------------------
CSMOEM_CSEG SEGMENT PARA PUBLIC 'CODE' USE16
;<AMI_THDR_START>
;---------------------------------------------------------------------------
;
; Name: CsmOemInterrupts
;
; Type: eLink Table
;
; Description:
;
; Referrals:
;
; Notes: eLink comments display the name of immediate Parent.
;
;---------------------------------------------------------------------------
;<AMI_THDR_END>
PUBLIC CsmOemInterrupts
PUBLIC CsmOemInterruptsEnd
CsmOemInterrupts LABEL WORD
mBODY_ID_AND_TBL_CSM_ENTRY_NEAR 00015h, NBINT15
mEND_TBL_CSM CsmOemInterrupts
;<AMI_THDR_START>
;---------------------------------------------------------------------------
;
; Name: CsmOem16Functions
;
; Type: eLink Table
;
; Description:
;
; Referrals:
;
; Notes: eLink comments display the name of immediate Parent.
;
;---------------------------------------------------------------------------
;<AMI_THDR_END>
PUBLIC CsmOem16Functions
PUBLIC CsmOem16FunctionsEnd
CsmOem16Functions LABEL WORD
mBODY_ID_AND_TBL_CSM_ENTRY_NEAR 00007h, AhciApiModuleStart
mBODY_ID_AND_TBL_CSM_ENTRY_NEAR 0000Bh, SerialCallBackApiModuleStart
mBODY_ID_AND_TBL_CSM_ENTRY_NEAR 00008h, LegcaySredirModuleStart
mBODY_ID_AND_TBL_CSM_ENTRY_NEAR 00006h, EnableLegcaySredirModuleStart
mEND_TBL_CSM CsmOem16Functions
;---------------------------------------------------------------------------
; CSMOEM_CSEG S E G M E N T ENDS
;---------------------------------------------------------------------------
CSMOEM_CSEG ENDS
END
;-------- DO NOT EDIT THIS FILE --------
;
; FILE WAS GENERATED AUTOMATICALY USING AMISDL v3.64.1065 Test Only (Mar 15 2013,03:42:45)
;
;-------- DO NOT EDIT THIS FILE --------
;****************************************************************************
;****************************************************************************
;** **
;** (C)Copyright 1985-2013, American Megatrends, Inc. **
;** **
;** All Rights Reserved. **
;** **
;** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
;** **
;** Phone (770)-246-8600 **
;** **
;****************************************************************************
;****************************************************************************
;****************************************************************************
|