Correct minor comments

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6932 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2008-12-09 08:22:53 +00:00
parent 214099c788
commit 2a53dabf62
1 changed files with 75 additions and 75 deletions

View File

@ -1815,9 +1815,9 @@ GetPowerOfTwo64 (
from little endian to big endian or vice versa. The byte swapped value is from little endian to big endian or vice versa. The byte swapped value is
returned. returned.
@param Value Operand A 16-bit unsigned value. @param Value A 16-bit unsigned value.
@return The byte swapped Operand. @return The byte swapped value.
**/ **/
UINT16 UINT16
@ -1834,9 +1834,9 @@ SwapBytes16 (
from little endian to big endian or vice versa. The byte swapped value is from little endian to big endian or vice versa. The byte swapped value is
returned. returned.
@param Value Operand A 32-bit unsigned value. @param Value A 32-bit unsigned value.
@return The byte swapped Operand. @return The byte swapped value.
**/ **/
UINT32 UINT32
@ -1853,9 +1853,9 @@ SwapBytes32 (
from little endian to big endian or vice versa. The byte swapped value is from little endian to big endian or vice versa. The byte swapped value is
returned. returned.
@param Value Operand A 64-bit unsigned value. @param Value A 64-bit unsigned value.
@return The byte swapped Operand. @return The byte swapped value.
**/ **/
UINT64 UINT64
@ -4968,21 +4968,21 @@ AsmPalCall (
/// ///
typedef union { typedef union {
struct { struct {
UINT32 CF:1; /// Carry Flag UINT32 CF:1; ///< Carry Flag
UINT32 Reserved_0:1; /// Reserved UINT32 Reserved_0:1; ///< Reserved
UINT32 PF:1; /// Parity Flag UINT32 PF:1; ///< Parity Flag
UINT32 Reserved_1:1; /// Reserved UINT32 Reserved_1:1; ///< Reserved
UINT32 AF:1; /// Auxiliary Carry Flag UINT32 AF:1; ///< Auxiliary Carry Flag
UINT32 Reserved_2:1; /// Reserved UINT32 Reserved_2:1; ///< Reserved
UINT32 ZF:1; /// Zero Flag UINT32 ZF:1; ///< Zero Flag
UINT32 SF:1; /// Sign Flag UINT32 SF:1; ///< Sign Flag
UINT32 TF:1; /// Trap Flag UINT32 TF:1; ///< Trap Flag
UINT32 IF:1; /// Interrupt Enable Flag UINT32 IF:1; ///< Interrupt Enable Flag
UINT32 DF:1; /// Direction Flag UINT32 DF:1; ///< Direction Flag
UINT32 OF:1; /// Overflow Flag UINT32 OF:1; ///< Overflow Flag
UINT32 IOPL:2; /// I/O Privilege Level UINT32 IOPL:2; ///< I/O Privilege Level
UINT32 NT:1; /// Nested Task UINT32 NT:1; ///< Nested Task
UINT32 Reserved_3:1; /// Reserved UINT32 Reserved_3:1; ///< Reserved
} Bits; } Bits;
UINT16 Uint16; UINT16 Uint16;
} IA32_FLAGS16; } IA32_FLAGS16;
@ -4994,28 +4994,28 @@ typedef union {
/// ///
typedef union { typedef union {
struct { struct {
UINT32 CF:1; /// Carry Flag UINT32 CF:1; ///< Carry Flag
UINT32 Reserved_0:1; /// Reserved UINT32 Reserved_0:1; ///< Reserved
UINT32 PF:1; /// Parity Flag UINT32 PF:1; ///< Parity Flag
UINT32 Reserved_1:1; /// Reserved UINT32 Reserved_1:1; ///< Reserved
UINT32 AF:1; /// Auxiliary Carry Flag UINT32 AF:1; ///< Auxiliary Carry Flag
UINT32 Reserved_2:1; /// Reserved UINT32 Reserved_2:1; ///< Reserved
UINT32 ZF:1; /// Zero Flag UINT32 ZF:1; ///< Zero Flag
UINT32 SF:1; /// Sign Flag UINT32 SF:1; ///< Sign Flag
UINT32 TF:1; /// Trap Flag UINT32 TF:1; ///< Trap Flag
UINT32 IF:1; /// Interrupt Enable Flag UINT32 IF:1; ///< Interrupt Enable Flag
UINT32 DF:1; /// Direction Flag UINT32 DF:1; ///< Direction Flag
UINT32 OF:1; /// Overflow Flag UINT32 OF:1; ///< Overflow Flag
UINT32 IOPL:2; /// I/O Privilege Level UINT32 IOPL:2; ///< I/O Privilege Level
UINT32 NT:1; /// Nested Task UINT32 NT:1; ///< Nested Task
UINT32 Reserved_3:1; /// Reserved UINT32 Reserved_3:1; ///< Reserved
UINT32 RF:1; /// Resume Flag UINT32 RF:1; ///< Resume Flag
UINT32 VM:1; /// Virtual 8086 Mode UINT32 VM:1; ///< Virtual 8086 Mode
UINT32 AC:1; /// Alignment Check UINT32 AC:1; ///< Alignment Check
UINT32 VIF:1; /// Virtual Interrupt Flag UINT32 VIF:1; ///< Virtual Interrupt Flag
UINT32 VIP:1; /// Virtual Interrupt Pending UINT32 VIP:1; ///< Virtual Interrupt Pending
UINT32 ID:1; /// ID Flag UINT32 ID:1; ///< ID Flag
UINT32 Reserved_4:10; /// Reserved UINT32 Reserved_4:10; ///< Reserved
} Bits; } Bits;
UINTN UintN; UINTN UintN;
} IA32_EFLAGS32; } IA32_EFLAGS32;
@ -5027,20 +5027,20 @@ typedef union {
/// ///
typedef union { typedef union {
struct { struct {
UINT32 PE:1; /// Protection Enable UINT32 PE:1; ///< Protection Enable
UINT32 MP:1; /// Monitor Coprocessor UINT32 MP:1; ///< Monitor Coprocessor
UINT32 EM:1; /// Emulation UINT32 EM:1; ///< Emulation
UINT32 TS:1; /// Task Switched UINT32 TS:1; ///< Task Switched
UINT32 ET:1; /// Extension Type UINT32 ET:1; ///< Extension Type
UINT32 NE:1; /// Numeric Error UINT32 NE:1; ///< Numeric Error
UINT32 Reserved_0:10; /// Reserved UINT32 Reserved_0:10; ///< Reserved
UINT32 WP:1; /// Write Protect UINT32 WP:1; ///< Write Protect
UINT32 Reserved_1:1; /// Reserved UINT32 Reserved_1:1; ///< Reserved
UINT32 AM:1; /// Alignment Mask UINT32 AM:1; ///< Alignment Mask
UINT32 Reserved_2:10; /// Reserved UINT32 Reserved_2:10; ///< Reserved
UINT32 NW:1; /// Mot Write-through UINT32 NW:1; ///< Mot Write-through
UINT32 CD:1; /// Cache Disable UINT32 CD:1; ///< Cache Disable
UINT32 PG:1; /// Paging UINT32 PG:1; ///< Paging
} Bits; } Bits;
UINTN UintN; UINTN UintN;
} IA32_CR0; } IA32_CR0;
@ -5052,24 +5052,24 @@ typedef union {
/// ///
typedef union { typedef union {
struct { struct {
UINT32 VME:1; /// Virtual-8086 Mode Extensions UINT32 VME:1; ///< Virtual-8086 Mode Extensions
UINT32 PVI:1; /// Protected-Mode Virtual Interrupts UINT32 PVI:1; ///< Protected-Mode Virtual Interrupts
UINT32 TSD:1; /// Time Stamp Disable UINT32 TSD:1; ///< Time Stamp Disable
UINT32 DE:1; /// Debugging Extensions UINT32 DE:1; ///< Debugging Extensions
UINT32 PSE:1; /// Page Size Extensions UINT32 PSE:1; ///< Page Size Extensions
UINT32 PAE:1; /// Physical Address Extension UINT32 PAE:1; ///< Physical Address Extension
UINT32 MCE:1; /// Machine Check Enable UINT32 MCE:1; ///< Machine Check Enable
UINT32 PGE:1; /// Page Global Enable UINT32 PGE:1; ///< Page Global Enable
UINT32 PCE:1; /// Performance Monitoring Counter UINT32 PCE:1; ///< Performance Monitoring Counter
/// Enable ///< Enable
UINT32 OSFXSR:1; /// Operating System Support for UINT32 OSFXSR:1; ///< Operating System Support for
/// FXSAVE and FXRSTOR instructions ///< FXSAVE and FXRSTOR instructions
UINT32 OSXMMEXCPT:1; /// Operating System Support for UINT32 OSXMMEXCPT:1; ///< Operating System Support for
/// Unmasked SIMD Floating Point ///< Unmasked SIMD Floating Point
/// Exceptions ///< Exceptions
UINT32 Reserved_0:2; /// Reserved UINT32 Reserved_0:2; ///< Reserved
UINT32 VMXE:1; /// VMX Enable UINT32 VMXE:1; ///< VMX Enable
UINT32 Reserved_1:18; /// Reseved UINT32 Reserved_1:18; ///< Reseved
} Bits; } Bits;
UINTN UintN; UINTN UintN;
} IA32_CR4; } IA32_CR4;