diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/X86Thunk.c')
-rw-r--r-- | MdePkg/Library/BaseLib/X86Thunk.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/X86Thunk.c b/MdePkg/Library/BaseLib/X86Thunk.c index fbd198984d..72c918756d 100644 --- a/MdePkg/Library/BaseLib/X86Thunk.c +++ b/MdePkg/Library/BaseLib/X86Thunk.c @@ -109,6 +109,9 @@ AsmGetThunk16Properties ( Prepares all structures a code required to use AsmThunk16().
Prepares all structures and code required to use AsmThunk16().
+
+ This interface is limited to be used in physical mode but can not be used in
+ virtual mode with paging.
If ThunkContext is NULL, then ASSERT().
@@ -227,6 +230,9 @@ AsmPrepareThunk16 ( If both THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 and THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL are set in
ThunkAttributes, then ASSERT().
+ This interface is limited to be used in physical mode but can not be used in
+ virtual mode with paging.
+
@param ThunkContext A pointer to the context structure that describes the
16-bit real mode code to call.
@@ -263,6 +269,9 @@ AsmThunk16 ( real mode thunk, then it is more efficient if AsmPrepareThunk16() is called
once and AsmThunk16() can be called for each 16-bit real mode thunk.
+ This interface is limited to be used in physical mode but can not be used in
+ virtual mode with paging.
+
See AsmPrepareThunk16() and AsmThunk16() for the detailed description and ASSERT() conditions.
@param ThunkContext A pointer to the context structure that describes the
|