- Timestamp:
- Apr 21, 2008 4:11:09 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29973
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r8236 r8242 678 678 return VERR_EM_INTERPRETER; 679 679 680 #ifdef DEBUG680 #ifdef LOG_ENABLED 681 681 const char *pszInstr; 682 682 683 683 if (pCpu->pCurInstr->opcode == OP_XOR) 684 684 pszInstr = "Xor"; 685 else if (pCpu->pCurInstr->opcode == OP_OR) 686 pszInstr = "Or"; 687 else if (pCpu->pCurInstr->opcode == OP_AND) 688 pszInstr = "And"; 685 689 else 686 if (pCpu->pCurInstr->opcode == OP_OR) 687 pszInstr = "Or"; 688 else 689 if (pCpu->pCurInstr->opcode == OP_AND) 690 pszInstr = "And"; 690 pszInstr = "OrXorAnd??"; 691 691 #endif 692 692 … … 850 850 return VERR_EM_INTERPRETER; 851 851 852 #ifdef DEBUG852 #ifdef LOG_ENABLED 853 853 const char *pszInstr; 854 854 855 855 if (pCpu->pCurInstr->opcode == OP_SUB) 856 856 pszInstr = "Sub"; 857 else if (pCpu->pCurInstr->opcode == OP_ADD) 858 pszInstr = "Add"; 859 else if (pCpu->pCurInstr->opcode == OP_ADC) 860 pszInstr = "Adc"; 857 861 else 858 if (pCpu->pCurInstr->opcode == OP_ADD) 859 pszInstr = "Add"; 860 else 861 if (pCpu->pCurInstr->opcode == OP_ADC) 862 pszInstr = "Adc"; 862 pszInstr = "AddSub??"; 863 863 #endif 864 864 … … 974 974 if (pCpu->pCurInstr->opcode == OP_BTR) 975 975 pszInstr = "Btr"; 976 else if (pCpu->pCurInstr->opcode == OP_BTS) 977 pszInstr = "Bts"; 978 else if (pCpu->pCurInstr->opcode == OP_BTC) 979 pszInstr = "Btc"; 976 980 else 977 if (pCpu->pCurInstr->opcode == OP_BTS) 978 pszInstr = "Bts"; 979 else 980 if (pCpu->pCurInstr->opcode == OP_BTC) 981 pszInstr = "Btc"; 981 pszInstr = "Bit??"; 982 982 #endif 983 983
Note:
See TracChangeset
for help on using the changeset viewer.