diff --git a/src/cpu/core_dyn_x86/decoder.h b/src/cpu/core_dyn_x86/decoder.h index 16b7e129..0d91df16 100644 --- a/src/cpu/core_dyn_x86/decoder.h +++ b/src/cpu/core_dyn_x86/decoder.h @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: decoder.h,v 1.56 2009-03-27 18:10:35 c2woody Exp $ */ +/* $Id: decoder.h,v 1.57 2009-03-29 17:32:20 qbix79 Exp $ */ #define X86_DYNFPU_DH_ENABLED #define X86_INLINED_MEMACCESS @@ -277,7 +277,7 @@ static INLINE void dyn_set_eip_last(void) { } -enum save_info_type {exception, cycle_check, normal, fpu_restore}; +enum save_info_type {db_exception, cycle_check, normal, fpu_restore}; static struct { @@ -309,7 +309,7 @@ static void dyn_check_bool_exception(DynReg * check) { save_info[used_save_info].cycles=decode.cycles; save_info[used_save_info].eip_change=decode.op_start-decode.code_start; if (!cpu.code.big) save_info[used_save_info].eip_change&=0xffff; - save_info[used_save_info].type=exception; + save_info[used_save_info].type=db_exception; used_save_info++; } @@ -321,7 +321,7 @@ static void dyn_check_bool_exception_al(void) { save_info[used_save_info].cycles=decode.cycles; save_info[used_save_info].eip_change=decode.op_start-decode.code_start; if (!cpu.code.big) save_info[used_save_info].eip_change&=0xffff; - save_info[used_save_info].type=exception; + save_info[used_save_info].type=db_exception; used_save_info++; } @@ -348,7 +348,7 @@ static void dyn_check_bool_exception_ne(void) { save_info[used_save_info].cycles=decode.cycles; save_info[used_save_info].eip_change=decode.op_start-decode.code_start; if (!cpu.code.big) save_info[used_save_info].eip_change&=0xffff; - save_info[used_save_info].type=exception; + save_info[used_save_info].type=db_exception; used_save_info++; } @@ -356,7 +356,7 @@ static void dyn_fill_blocks(void) { for (Bitu sct=0; sct> 3) &7] << (sib >> 6); return base; -}; +} static PhysPt EA_32_00_n(void) { return BaseDS+reg_eax; } static PhysPt EA_32_01_n(void) { return BaseDS+reg_ecx; }