VirtualBox

Changeset 41676 in vbox for trunk/src/VBox/VMM/include


Ignore:
Timestamp:
Jun 12, 2012 8:53:40 PM (13 years ago)
Author:
vboxsync
Message:

DIS: More scoping work.

Location:
trunk/src/VBox/VMM/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/CSAMInternal.h

    r35348 r41676  
    251251{
    252252    uint32_t disp;
    253     if (pCpu->param1.flags & USE_IMMEDIATE8_REL)
     253    if (pCpu->param1.flags & DISUSE_IMMEDIATE8_REL)
    254254    {
    255255        disp = (int32_t)(char)pCpu->param1.parval;
    256256    }
    257257    else
    258     if (pCpu->param1.flags & USE_IMMEDIATE16_REL)
     258    if (pCpu->param1.flags & DISUSE_IMMEDIATE16_REL)
    259259    {
    260260        disp = (int32_t)(uint16_t)pCpu->param1.parval;
    261261    }
    262262    else
    263     if (pCpu->param1.flags & USE_IMMEDIATE32_REL)
     263    if (pCpu->param1.flags & DISUSE_IMMEDIATE32_REL)
    264264    {
    265265        disp = (int32_t)pCpu->param1.parval;
  • trunk/src/VBox/VMM/include/PATMInternal.h

    r41671 r41676  
    761761{
    762762    uint32_t disp;
    763     if (pCpu->param1.flags & USE_IMMEDIATE8_REL)
     763    if (pCpu->param1.flags & DISUSE_IMMEDIATE8_REL)
    764764    {
    765765        disp = (int32_t)(char)pCpu->param1.parval;
    766766    }
    767767    else
    768     if (pCpu->param1.flags & USE_IMMEDIATE16_REL)
     768    if (pCpu->param1.flags & DISUSE_IMMEDIATE16_REL)
    769769    {
    770770        disp = (int32_t)(uint16_t)pCpu->param1.parval;
    771771    }
    772772    else
    773     if (pCpu->param1.flags & USE_IMMEDIATE32_REL)
     773    if (pCpu->param1.flags & DISUSE_IMMEDIATE32_REL)
    774774    {
    775775        disp = (int32_t)pCpu->param1.parval;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette