Changeset 16037 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jan 19, 2009 10:30:36 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r15996 r16037 345 345 */ 346 346 unsigned cb = DISGetParamSize(pCpu, &pCpu->param1); 347 AssertMsg(cb > 0 && cb <= sizeof(uint 32_t), ("cb=%d\n", cb));347 AssertMsg(cb > 0 && cb <= sizeof(uint64_t), ("cb=%d\n", cb)); 348 348 int offIncrement = pRegFrame->eflags.Bits.u1DF ? -(signed)cb : (signed)cb; 349 349 … … 574 574 */ 575 575 unsigned cb = DISGetParamSize(pCpu, &pCpu->param1); 576 AssertMsg(cb > 0 && cb <= sizeof(uint 32_t), ("cb=%d\n", cb));576 AssertMsg(cb > 0 && cb <= sizeof(uint64_t), ("cb=%d\n", cb)); 577 577 int offIncrement = pRegFrame->eflags.Bits.u1DF ? -(signed)cb : (signed)cb; 578 578
Note:
See TracChangeset
for help on using the changeset viewer.