VirtualBox

Ignore:
Timestamp:
Aug 19, 2024 1:27:44 PM (7 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
164428
Message:

Disassembler,VMM,HostDrivers,Debugger,MakeAlternativeSource: Convert DISSTATE::Param1,...,DISSTATE::Param4 to DISSTATE::aParams[4] for easier indexing, bugref:10394

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/BiosCommonCode/MakeAlternativeSource.cpp

    r103005 r105724  
    914914{
    915915    PCDISOPCODE pCurInstr = pDis->pCurInstr;
    916     return disIsMemoryParameter(&pDis->Param1, pCurInstr->fParam1)
    917         || disIsMemoryParameter(&pDis->Param2, pCurInstr->fParam2)
    918         || disIsMemoryParameter(&pDis->Param3, pCurInstr->fParam3)
    919         || disIsMemoryParameter(&pDis->Param4, pCurInstr->fParam4);
     916    return disIsMemoryParameter(&pDis->aParams[0], pCurInstr->fParam1)
     917        || disIsMemoryParameter(&pDis->aParams[1], pCurInstr->fParam2)
     918        || disIsMemoryParameter(&pDis->aParams[2], pCurInstr->fParam3)
     919        || disIsMemoryParameter(&pDis->aParams[3], pCurInstr->fParam4);
    920920}
    921921
Note: See TracChangeset for help on using the changeset viewer.

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