Changeset 73514 in vbox for trunk/src/VBox
- Timestamp:
- Aug 5, 2018 2:33:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmReg.cpp
r73508 r73514 340 340 DISDECL(int) DISFetchReg8(PCCPUMCTXCORE pCtx, unsigned reg8, uint8_t *pVal) 341 341 { 342 AssertReturnStmt(reg8 < RT_ELEMENTS(g_aReg8Index), *pVal , VERR_INVALID_PARAMETER);342 AssertReturnStmt(reg8 < RT_ELEMENTS(g_aReg8Index), *pVal = 0, VERR_INVALID_PARAMETER); 343 343 344 344 *pVal = DIS_READ_REG8(pCtx, reg8);
Note:
See TracChangeset
for help on using the changeset viewer.