Changeset 66599 in vbox
- Timestamp:
- Apr 18, 2017 6:15:32 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114626
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r66581 r66599 4031 4031 X86_XCPT_VE = 0x14, 4032 4032 /** \#SX - Security Exception. */ 4033 X86_XCPT_SX = 0x1 f /** @todo r=ramshankar: typo. \#SX should be 0x1e (30) but X86_XCPT_MAX probably needs to remain 31. */4033 X86_XCPT_SX = 0x1e 4034 4034 } X86XCPT; 4035 4035 /** Pointer to a x86 exception code. */ … … 4037 4037 /** Pointer to a const x86 exception code. */ 4038 4038 typedef const X86XCPT *PCX86XCPT; 4039 /** The maximumexception value. */4040 #define X86_XCPT_ MAX (X86_XCPT_SX)4039 /** The last valid (currently reserved) exception value. */ 4040 #define X86_XCPT_LAST 0x1f 4041 4041 4042 4042 -
trunk/include/iprt/x86.mac
r66148 r66599 955 955 %define X86_SEL_RPL 0x0003 956 956 %define X86_SEL_RPL_LDT 0x0007 957 %define X86_XCPT_ MAX (X86_XCPT_SX)957 %define X86_XCPT_LAST 0x1f 958 958 %define X86_TRAP_ERR_EXTERNAL 1 959 959 %define X86_TRAP_ERR_IDT 2 -
trunk/src/VBox/ValidationKit/bootsectors/bootsector2-common-routines-template-1.mac
r66149 r66599 1132 1132 je .nok 1133 1133 1134 cmp dword [sDI + BS2TRAPREC.u8TrapNo], X86_XCPT_ MAX1134 cmp dword [sDI + BS2TRAPREC.u8TrapNo], X86_XCPT_LAST 1135 1135 ja .nok 1136 1136
Note:
See TracChangeset
for help on using the changeset viewer.