Changeset 13835 in vbox for trunk/src/VBox/Disassembler/DisasmTest.cpp
- Timestamp:
- Nov 5, 2008 2:34:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmTest.cpp
r11462 r13835 56 56 memset(&cpu, 0, sizeof(cpu)); 57 57 cpu.mode = CPUMODE_32BIT; 58 if ( VBOX_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput)))58 if (RT_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput))) 59 59 { 60 60 printf(szOutput); … … 81 81 memset(&cpu, 0, sizeof(cpu)); 82 82 cpu.mode = CPUMODE_64BIT; 83 if ( VBOX_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput)))83 if (RT_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput))) 84 84 printf(szOutput); 85 85 else
Note:
See TracChangeset
for help on using the changeset viewer.