diff options
| author | 2015-07-25 23:12:34 -0400 | |
|---|---|---|
| committer | 2015-07-25 23:12:34 -0400 | |
| commit | 392c7feba0cd152e46ffbe6089def35082fa2692 (patch) | |
| tree | d959d1751d99a6f5307b45d04e46c19c53d5efc2 /src/core/arm/dyncom | |
| parent | Merge pull request #989 from lioncash/extern (diff) | |
| parent | dyncom: Remove unnecessary initialization code. (diff) | |
| download | yuzu-392c7feba0cd152e46ffbe6089def35082fa2692.tar.gz yuzu-392c7feba0cd152e46ffbe6089def35082fa2692.tar.xz yuzu-392c7feba0cd152e46ffbe6089def35082fa2692.zip | |
Merge pull request #990 from lioncash/arm
dyncom: General cleanup
Diffstat (limited to 'src/core/arm/dyncom')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom.cpp | 13 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom.h | 2 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_dec.cpp | 4 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_dec.h | 4 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 12 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.h | 2 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_run.cpp | 2 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_run.h | 2 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_thumb.cpp | 23 | ||||
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_thumb.h | 2 |
10 files changed, 30 insertions, 36 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.cpp b/src/core/arm/dyncom/arm_dyncom.cpp index 529c4ac70..a51a3acf8 100644 --- a/src/core/arm/dyncom/arm_dyncom.cpp +++ b/src/core/arm/dyncom/arm_dyncom.cpp | |||
| @@ -6,7 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | #include "common/make_unique.h" | 7 | #include "common/make_unique.h" |
| 8 | 8 | ||
| 9 | #include "core/arm/skyeye_common/armdefs.h" | 9 | #include "core/arm/skyeye_common/armstate.h" |
| 10 | #include "core/arm/skyeye_common/armsupp.h" | ||
| 10 | #include "core/arm/skyeye_common/vfp/vfp.h" | 11 | #include "core/arm/skyeye_common/vfp/vfp.h" |
| 11 | 12 | ||
| 12 | #include "core/arm/dyncom/arm_dyncom.h" | 13 | #include "core/arm/dyncom/arm_dyncom.h" |
| @@ -19,18 +20,8 @@ | |||
| 19 | ARM_DynCom::ARM_DynCom(PrivilegeMode initial_mode) { | 20 | ARM_DynCom::ARM_DynCom(PrivilegeMode initial_mode) { |
| 20 | state = Common::make_unique<ARMul_State>(); | 21 | state = Common::make_unique<ARMul_State>(); |
| 21 | 22 | ||
| 22 | ARMul_NewState(state.get()); | ||
| 23 | ARMul_SelectProcessor(state.get(), ARM_v6_Prop | ARM_v5_Prop | ARM_v5e_Prop); | ||
| 24 | |||
| 25 | state->abort_model = ABORT_BASE_RESTORED; | ||
| 26 | |||
| 27 | state->bigendSig = LOW; | ||
| 28 | state->lateabtSig = LOW; | ||
| 29 | state->NirqSig = HIGH; | ||
| 30 | |||
| 31 | // Reset the core to initial state | 23 | // Reset the core to initial state |
| 32 | ARMul_Reset(state.get()); | 24 | ARMul_Reset(state.get()); |
| 33 | state->Emulate = RUN; | ||
| 34 | 25 | ||
| 35 | // Switch to the desired privilege mode. | 26 | // Switch to the desired privilege mode. |
| 36 | switch_mode(state.get(), initial_mode); | 27 | switch_mode(state.get(), initial_mode); |
diff --git a/src/core/arm/dyncom/arm_dyncom.h b/src/core/arm/dyncom/arm_dyncom.h index cc9355722..87ab6908a 100644 --- a/src/core/arm/dyncom/arm_dyncom.h +++ b/src/core/arm/dyncom/arm_dyncom.h | |||
| @@ -9,8 +9,8 @@ | |||
| 9 | #include "common/common_types.h" | 9 | #include "common/common_types.h" |
| 10 | 10 | ||
| 11 | #include "core/arm/arm_interface.h" | 11 | #include "core/arm/arm_interface.h" |
| 12 | #include "core/arm/skyeye_common/armdefs.h" | ||
| 13 | #include "core/arm/skyeye_common/arm_regformat.h" | 12 | #include "core/arm/skyeye_common/arm_regformat.h" |
| 13 | #include "core/arm/skyeye_common/armstate.h" | ||
| 14 | 14 | ||
| 15 | namespace Core { | 15 | namespace Core { |
| 16 | struct ThreadContext; | 16 | struct ThreadContext; |
diff --git a/src/core/arm/dyncom/arm_dyncom_dec.cpp b/src/core/arm/dyncom/arm_dyncom_dec.cpp index 697be9556..3ab9f2c17 100644 --- a/src/core/arm/dyncom/arm_dyncom_dec.cpp +++ b/src/core/arm/dyncom/arm_dyncom_dec.cpp | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "core/arm/skyeye_common/armdefs.h" | ||
| 6 | #include "core/arm/dyncom/arm_dyncom_dec.h" | 5 | #include "core/arm/dyncom/arm_dyncom_dec.h" |
| 6 | #include "core/arm/skyeye_common/armsupp.h" | ||
| 7 | 7 | ||
| 8 | const ISEITEM arm_instruction[] = { | 8 | const ISEITEM arm_instruction[] = { |
| 9 | { "vmla", 4, ARMVFP2, { 23, 27, 0x1C, 20, 21, 0x0, 9, 11, 0x5, 4, 4, 0 }}, | 9 | { "vmla", 4, ARMVFP2, { 23, 27, 0x1C, 20, 21, 0x0, 9, 11, 0x5, 4, 4, 0 }}, |
| @@ -414,7 +414,7 @@ const ISEITEM arm_exclusion_code[] = { | |||
| 414 | { "invalid", 0, INVALID, { 0 }} | 414 | { "invalid", 0, INVALID, { 0 }} |
| 415 | }; | 415 | }; |
| 416 | 416 | ||
| 417 | int decode_arm_instr(uint32_t instr, int32_t *idx) { | 417 | int decode_arm_instr(u32 instr, s32* idx) { |
| 418 | int n = 0; | 418 | int n = 0; |
| 419 | int base = 0; | 419 | int base = 0; |
| 420 | int ret = DECODE_FAILURE; | 420 | int ret = DECODE_FAILURE; |
diff --git a/src/core/arm/dyncom/arm_dyncom_dec.h b/src/core/arm/dyncom/arm_dyncom_dec.h index 4b5f5ad7e..5f6279627 100644 --- a/src/core/arm/dyncom/arm_dyncom_dec.h +++ b/src/core/arm/dyncom/arm_dyncom_dec.h | |||
| @@ -4,7 +4,9 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | int decode_arm_instr(uint32_t instr, int32_t *idx); | 7 | #include "common/common_types.h" |
| 8 | |||
| 9 | int decode_arm_instr(u32 instr, s32* idx); | ||
| 8 | 10 | ||
| 9 | enum DECODE_STATUS { | 11 | enum DECODE_STATUS { |
| 10 | DECODE_SUCCESS, | 12 | DECODE_SUCCESS, |
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index 785f39566..fd5e13295 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -17,8 +17,9 @@ | |||
| 17 | #include "core/arm/dyncom/arm_dyncom_interpreter.h" | 17 | #include "core/arm/dyncom/arm_dyncom_interpreter.h" |
| 18 | #include "core/arm/dyncom/arm_dyncom_thumb.h" | 18 | #include "core/arm/dyncom/arm_dyncom_thumb.h" |
| 19 | #include "core/arm/dyncom/arm_dyncom_run.h" | 19 | #include "core/arm/dyncom/arm_dyncom_run.h" |
| 20 | #include "core/arm/skyeye_common/armdefs.h" | ||
| 21 | #include "core/arm/skyeye_common/armmmu.h" | 20 | #include "core/arm/skyeye_common/armmmu.h" |
| 21 | #include "core/arm/skyeye_common/armstate.h" | ||
| 22 | #include "core/arm/skyeye_common/armsupp.h" | ||
| 22 | #include "core/arm/skyeye_common/vfp/vfp.h" | 23 | #include "core/arm/skyeye_common/vfp/vfp.h" |
| 23 | 24 | ||
| 24 | Common::Profiling::TimingCategory profile_execute("DynCom::Execute"); | 25 | Common::Profiling::TimingCategory profile_execute("DynCom::Execute"); |
| @@ -50,22 +51,21 @@ typedef unsigned int (*shtop_fp_t)(ARMul_State* cpu, unsigned int sht_oper); | |||
| 50 | // Defines a reservation granule of 2 words, which protects the first 2 words starting at the tag. | 51 | // Defines a reservation granule of 2 words, which protects the first 2 words starting at the tag. |
| 51 | // This is the smallest granule allowed by the v7 spec, and is coincidentally just large enough to | 52 | // This is the smallest granule allowed by the v7 spec, and is coincidentally just large enough to |
| 52 | // support LDR/STREXD. | 53 | // support LDR/STREXD. |
| 53 | static const ARMword RESERVATION_GRANULE_MASK = 0xFFFFFFF8; | 54 | static const u32 RESERVATION_GRANULE_MASK = 0xFFFFFFF8; |
| 54 | 55 | ||
| 55 | // Exclusive memory access | 56 | // Exclusive memory access |
| 56 | static int exclusive_detect(ARMul_State* state, ARMword addr) { | 57 | static int exclusive_detect(ARMul_State* state, u32 addr) { |
| 57 | if(state->exclusive_tag == (addr & RESERVATION_GRANULE_MASK)) | 58 | if(state->exclusive_tag == (addr & RESERVATION_GRANULE_MASK)) |
| 58 | return 0; | 59 | return 0; |
| 59 | else | 60 | else |
| 60 | return -1; | 61 | return -1; |
| 61 | } | 62 | } |
| 62 | 63 | ||
| 63 | static void add_exclusive_addr(ARMul_State* state, ARMword addr){ | 64 | static void add_exclusive_addr(ARMul_State* state, u32 addr){ |
| 64 | state->exclusive_tag = addr & RESERVATION_GRANULE_MASK; | 65 | state->exclusive_tag = addr & RESERVATION_GRANULE_MASK; |
| 65 | return; | ||
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | static void remove_exclusive(ARMul_State* state, ARMword addr){ | 68 | static void remove_exclusive(ARMul_State* state, u32 addr){ |
| 69 | state->exclusive_tag = 0xFFFFFFFF; | 69 | state->exclusive_tag = 0xFFFFFFFF; |
| 70 | } | 70 | } |
| 71 | 71 | ||
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.h b/src/core/arm/dyncom/arm_dyncom_interpreter.h index 1c324d29c..7a46dcc94 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.h +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.h | |||
| @@ -4,6 +4,6 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/arm/skyeye_common/armdefs.h" | 7 | struct ARMul_State; |
| 8 | 8 | ||
| 9 | unsigned InterpreterMainLoop(ARMul_State* state); | 9 | unsigned InterpreterMainLoop(ARMul_State* state); |
diff --git a/src/core/arm/dyncom/arm_dyncom_run.cpp b/src/core/arm/dyncom/arm_dyncom_run.cpp index 5a9a6a788..4c6acba98 100644 --- a/src/core/arm/dyncom/arm_dyncom_run.cpp +++ b/src/core/arm/dyncom/arm_dyncom_run.cpp | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "core/arm/dyncom/arm_dyncom_run.h" | 5 | #include "core/arm/dyncom/arm_dyncom_run.h" |
| 6 | #include "core/arm/skyeye_common/armdefs.h" | 6 | #include "core/arm/skyeye_common/armstate.h" |
| 7 | 7 | ||
| 8 | void switch_mode(ARMul_State* core, uint32_t mode) { | 8 | void switch_mode(ARMul_State* core, uint32_t mode) { |
| 9 | if (core->Mode == mode) | 9 | if (core->Mode == mode) |
diff --git a/src/core/arm/dyncom/arm_dyncom_run.h b/src/core/arm/dyncom/arm_dyncom_run.h index 85774c565..ef18455bc 100644 --- a/src/core/arm/dyncom/arm_dyncom_run.h +++ b/src/core/arm/dyncom/arm_dyncom_run.h | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #pragma once | 19 | #pragma once |
| 20 | 20 | ||
| 21 | #include "core/arm/skyeye_common/armdefs.h" | 21 | #include "core/arm/skyeye_common/armstate.h" |
| 22 | 22 | ||
| 23 | void switch_mode(ARMul_State* core, uint32_t mode); | 23 | void switch_mode(ARMul_State* core, uint32_t mode); |
| 24 | 24 | ||
diff --git a/src/core/arm/dyncom/arm_dyncom_thumb.cpp b/src/core/arm/dyncom/arm_dyncom_thumb.cpp index f10a5b70f..2860af376 100644 --- a/src/core/arm/dyncom/arm_dyncom_thumb.cpp +++ b/src/core/arm/dyncom/arm_dyncom_thumb.cpp | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | // ARM instruction, and using the existing ARM simulator. | 6 | // ARM instruction, and using the existing ARM simulator. |
| 7 | 7 | ||
| 8 | #include "core/arm/dyncom/arm_dyncom_thumb.h" | 8 | #include "core/arm/dyncom/arm_dyncom_thumb.h" |
| 9 | #include "core/arm/skyeye_common/armsupp.h" | ||
| 9 | 10 | ||
| 10 | // Decode a 16bit Thumb instruction. The instruction is in the low 16-bits of the tinstr field, | 11 | // Decode a 16bit Thumb instruction. The instruction is in the low 16-bits of the tinstr field, |
| 11 | // with the following Thumb instruction held in the high 16-bits. Passing in two Thumb instructions | 12 | // with the following Thumb instruction held in the high 16-bits. Passing in two Thumb instructions |
| @@ -13,7 +14,7 @@ | |||
| 13 | 14 | ||
| 14 | tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | 15 | tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { |
| 15 | tdstate valid = t_uninitialized; | 16 | tdstate valid = t_uninitialized; |
| 16 | ARMword tinstr = instr; | 17 | u32 tinstr = instr; |
| 17 | 18 | ||
| 18 | // The endian should be judge here | 19 | // The endian should be judge here |
| 19 | if((addr & 0x3) != 0) | 20 | if((addr & 0x3) != 0) |
| @@ -36,7 +37,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 36 | 37 | ||
| 37 | case 3: // ADD/SUB | 38 | case 3: // ADD/SUB |
| 38 | { | 39 | { |
| 39 | static const ARMword subset[4] = { | 40 | static const u32 subset[4] = { |
| 40 | 0xE0900000, // ADDS Rd,Rs,Rn | 41 | 0xE0900000, // ADDS Rd,Rs,Rn |
| 41 | 0xE0500000, // SUBS Rd,Rs,Rn | 42 | 0xE0500000, // SUBS Rd,Rs,Rn |
| 42 | 0xE2900000, // ADDS Rd,Rs,#imm3 | 43 | 0xE2900000, // ADDS Rd,Rs,#imm3 |
| @@ -55,7 +56,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 55 | case 6: // ADD | 56 | case 6: // ADD |
| 56 | case 7: // SUB | 57 | case 7: // SUB |
| 57 | { | 58 | { |
| 58 | static const ARMword subset[4] = { | 59 | static const u32 subset[4] = { |
| 59 | 0xE3B00000, // MOVS Rd,#imm8 | 60 | 0xE3B00000, // MOVS Rd,#imm8 |
| 60 | 0xE3500000, // CMP Rd,#imm8 | 61 | 0xE3500000, // CMP Rd,#imm8 |
| 61 | 0xE2900000, // ADDS Rd,Rd,#imm8 | 62 | 0xE2900000, // ADDS Rd,Rd,#imm8 |
| @@ -84,7 +85,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 84 | }; | 85 | }; |
| 85 | 86 | ||
| 86 | static const struct { | 87 | static const struct { |
| 87 | ARMword opcode; | 88 | u32 opcode; |
| 88 | otype type; | 89 | otype type; |
| 89 | } subset[16] = { | 90 | } subset[16] = { |
| 90 | { 0xE0100000, t_norm }, // ANDS Rd,Rd,Rs | 91 | { 0xE0100000, t_norm }, // ANDS Rd,Rd,Rs |
| @@ -129,8 +130,8 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 129 | break; | 130 | break; |
| 130 | } | 131 | } |
| 131 | } else { | 132 | } else { |
| 132 | ARMword Rd = ((tinstr & 0x0007) >> 0); | 133 | u32 Rd = ((tinstr & 0x0007) >> 0); |
| 133 | ARMword Rs = ((tinstr & 0x0078) >> 3); | 134 | u32 Rs = ((tinstr & 0x0078) >> 3); |
| 134 | 135 | ||
| 135 | if (tinstr & (1 << 7)) | 136 | if (tinstr & (1 << 7)) |
| 136 | Rd += 8; | 137 | Rd += 8; |
| @@ -184,7 +185,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 184 | case 10: | 185 | case 10: |
| 185 | case 11: | 186 | case 11: |
| 186 | { | 187 | { |
| 187 | static const ARMword subset[8] = { | 188 | static const u32 subset[8] = { |
| 188 | 0xE7800000, // STR Rd,[Rb,Ro] | 189 | 0xE7800000, // STR Rd,[Rb,Ro] |
| 189 | 0xE18000B0, // STRH Rd,[Rb,Ro] | 190 | 0xE18000B0, // STRH Rd,[Rb,Ro] |
| 190 | 0xE7C00000, // STRB Rd,[Rb,Ro] | 191 | 0xE7C00000, // STRB Rd,[Rb,Ro] |
| @@ -207,7 +208,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 207 | case 14: // STRB Rd,[Rb,#imm5] | 208 | case 14: // STRB Rd,[Rb,#imm5] |
| 208 | case 15: // LDRB Rd,[Rb,#imm5] | 209 | case 15: // LDRB Rd,[Rb,#imm5] |
| 209 | { | 210 | { |
| 210 | static const ARMword subset[4] = { | 211 | static const u32 subset[4] = { |
| 211 | 0xE5800000, // STR Rd,[Rb,#imm5] | 212 | 0xE5800000, // STR Rd,[Rb,#imm5] |
| 212 | 0xE5900000, // LDR Rd,[Rb,#imm5] | 213 | 0xE5900000, // LDR Rd,[Rb,#imm5] |
| 213 | 0xE5C00000, // STRB Rd,[Rb,#imm5] | 214 | 0xE5C00000, // STRB Rd,[Rb,#imm5] |
| @@ -274,7 +275,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 274 | | BITS(tinstr, 0, 3) // imm4 field; | 275 | | BITS(tinstr, 0, 3) // imm4 field; |
| 275 | | (BITS(tinstr, 4, 7) << 8); // beginning 4 bits of imm12 | 276 | | (BITS(tinstr, 4, 7) << 8); // beginning 4 bits of imm12 |
| 276 | } else if ((tinstr & 0x0F00) == 0x0200) { | 277 | } else if ((tinstr & 0x0F00) == 0x0200) { |
| 277 | static const ARMword subset[4] = { | 278 | static const u32 subset[4] = { |
| 278 | 0xE6BF0070, // SXTH | 279 | 0xE6BF0070, // SXTH |
| 279 | 0xE6AF0070, // SXTB | 280 | 0xE6AF0070, // SXTB |
| 280 | 0xE6FF0070, // UXTH | 281 | 0xE6FF0070, // UXTH |
| @@ -298,7 +299,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 298 | | (BIT(tinstr, 4) << 18); // enable bit | 299 | | (BIT(tinstr, 4) << 18); // enable bit |
| 299 | } | 300 | } |
| 300 | } else if ((tinstr & 0x0F00) == 0x0a00) { | 301 | } else if ((tinstr & 0x0F00) == 0x0a00) { |
| 301 | static const ARMword subset[3] = { | 302 | static const u32 subset[3] = { |
| 302 | 0xE6BF0F30, // REV | 303 | 0xE6BF0F30, // REV |
| 303 | 0xE6BF0FB0, // REV16 | 304 | 0xE6BF0FB0, // REV16 |
| 304 | 0xE6FF0FB0, // REVSH | 305 | 0xE6FF0FB0, // REVSH |
| @@ -308,7 +309,7 @@ tdstate thumb_translate(u32 addr, u32 instr, u32* ainstr, u32* inst_size) { | |||
| 308 | | (BITS(tinstr, 0, 2) << 12) // Rd | 309 | | (BITS(tinstr, 0, 2) << 12) // Rd |
| 309 | | BITS(tinstr, 3, 5); // Rm | 310 | | BITS(tinstr, 3, 5); // Rm |
| 310 | } else { | 311 | } else { |
| 311 | static const ARMword subset[4] = { | 312 | static const u32 subset[4] = { |
| 312 | 0xE92D0000, // STMDB sp!,{rlist} | 313 | 0xE92D0000, // STMDB sp!,{rlist} |
| 313 | 0xE92D4000, // STMDB sp!,{rlist,lr} | 314 | 0xE92D4000, // STMDB sp!,{rlist,lr} |
| 314 | 0xE8BD0000, // LDMIA sp!,{rlist} | 315 | 0xE8BD0000, // LDMIA sp!,{rlist} |
diff --git a/src/core/arm/dyncom/arm_dyncom_thumb.h b/src/core/arm/dyncom/arm_dyncom_thumb.h index 8394ff156..c06f09580 100644 --- a/src/core/arm/dyncom/arm_dyncom_thumb.h +++ b/src/core/arm/dyncom/arm_dyncom_thumb.h | |||
| @@ -26,7 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | #pragma once | 27 | #pragma once |
| 28 | 28 | ||
| 29 | #include "core/arm/skyeye_common/armdefs.h" | 29 | #include "common/common_types.h" |
| 30 | 30 | ||
| 31 | enum tdstate { | 31 | enum tdstate { |
| 32 | t_undefined, // Undefined Thumb instruction | 32 | t_undefined, // Undefined Thumb instruction |