Changeset 4283 in vbox for trunk/src/VBox/Disassembler
- Timestamp:
- Aug 22, 2007 2:17:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmCore.cpp
r4071 r4283 155 155 * by register's index from disasm. 156 156 */ 157 static unsigned g_aReg32Index[] =157 static const unsigned g_aReg32Index[] = 158 158 { 159 159 RT_OFFSETOF(CPUMCTXCORE, eax), /* USE_REG_EAX */ … … 177 177 * by register's index from disasm. 178 178 */ 179 static unsigned g_aReg16Index[] =179 static const unsigned g_aReg16Index[] = 180 180 { 181 181 RT_OFFSETOF(CPUMCTXCORE, eax), /* USE_REG_AX */ … … 199 199 * by register's index from disasm. 200 200 */ 201 static unsigned g_aReg8Index[] =201 static const unsigned g_aReg8Index[] = 202 202 { 203 203 RT_OFFSETOF(CPUMCTXCORE, eax), /* USE_REG_AL */ … … 221 221 * by register's index from disasm. 222 222 */ 223 static unsigned g_aRegSegIndex[] =223 static const unsigned g_aRegSegIndex[] = 224 224 { 225 225 RT_OFFSETOF(CPUMCTXCORE, es), /* USE_REG_ES */ … … 231 231 }; 232 232 233 static unsigned g_aRegHidSegIndex[] =233 static const unsigned g_aRegHidSegIndex[] = 234 234 { 235 235 RT_OFFSETOF(CPUMCTXCORE, esHid), /* USE_REG_ES */
Note:
See TracChangeset
for help on using the changeset viewer.