VirtualBox

Changeset 9833 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jun 20, 2008 7:59:09 AM (17 years ago)
Author:
vboxsync
Message:

qword accesses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp

    r9776 r9833  
    11611161                    case 2: *(uint16_t *)pu32Value = 0x0000; break;
    11621162                    case 4: *(uint32_t *)pu32Value = 0x00000000; break;
     1163                    case 8: *(uint64_t *)pu32Value = 0x0000000000000000; break;
    11631164                    default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%VGp\n", cbValue, GCPhys)); break;
    11641165                }
     
    11721173                    case 2: *(uint16_t *)pu32Value = 0xffff; break;
    11731174                    case 4: *(uint32_t *)pu32Value = 0xffffffff; break;
     1175                    case 8: *(uint64_t *)pu32Value = 0xffffffffffffffff; break;
    11741176                    default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%VGp\n", cbValue, GCPhys)); break;
    11751177                }
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