diff options
| author | 2015-07-25 21:10:41 -0400 | |
|---|---|---|
| committer | 2015-07-25 22:10:44 -0400 | |
| commit | dfb424b6d1238fed41cf1305ae1b330d5c4c5a0d (patch) | |
| tree | 5d4019fae59c2fb5b777e3fc40d9f4151ec411cc /src/core/arm/skyeye_common | |
| parent | dyncom: Get rid of skyeye typedefs (diff) | |
| download | yuzu-dfb424b6d1238fed41cf1305ae1b330d5c4c5a0d.tar.gz yuzu-dfb424b6d1238fed41cf1305ae1b330d5c4c5a0d.tar.xz yuzu-dfb424b6d1238fed41cf1305ae1b330d5c4c5a0d.zip | |
dyncom: Rename armdefs.h to armstate.h
Diffstat (limited to 'src/core/arm/skyeye_common')
| -rw-r--r-- | src/core/arm/skyeye_common/arminit.cpp | 2 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/armmmu.h | 2 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/armstate.h (renamed from src/core/arm/skyeye_common/armdefs.h) | 38 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/armsupp.cpp | 2 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfp.cpp | 2 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfp_helper.h | 2 |
6 files changed, 24 insertions, 24 deletions
diff --git a/src/core/arm/skyeye_common/arminit.cpp b/src/core/arm/skyeye_common/arminit.cpp index 4f7a48fab..4e868f86b 100644 --- a/src/core/arm/skyeye_common/arminit.cpp +++ b/src/core/arm/skyeye_common/arminit.cpp | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | 16 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
| 17 | 17 | ||
| 18 | #include <cstring> | 18 | #include <cstring> |
| 19 | #include "core/arm/skyeye_common/armdefs.h" | 19 | #include "core/arm/skyeye_common/armstate.h" |
| 20 | #include "core/arm/skyeye_common/vfp/vfp.h" | 20 | #include "core/arm/skyeye_common/vfp/vfp.h" |
| 21 | 21 | ||
| 22 | /***************************************************************************\ | 22 | /***************************************************************************\ |
diff --git a/src/core/arm/skyeye_common/armmmu.h b/src/core/arm/skyeye_common/armmmu.h index 6aa2e0771..5423588c0 100644 --- a/src/core/arm/skyeye_common/armmmu.h +++ b/src/core/arm/skyeye_common/armmmu.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include "common/swap.h" | 23 | #include "common/swap.h" |
| 24 | 24 | ||
| 25 | #include "core/memory.h" | 25 | #include "core/memory.h" |
| 26 | #include "core/arm/skyeye_common/armdefs.h" | 26 | #include "core/arm/skyeye_common/armstate.h" |
| 27 | #include "core/arm/skyeye_common/armsupp.h" | 27 | #include "core/arm/skyeye_common/armsupp.h" |
| 28 | 28 | ||
| 29 | // Register numbers in the MMU | 29 | // Register numbers in the MMU |
diff --git a/src/core/arm/skyeye_common/armdefs.h b/src/core/arm/skyeye_common/armstate.h index d5f4f3068..f1af02210 100644 --- a/src/core/arm/skyeye_common/armdefs.h +++ b/src/core/arm/skyeye_common/armstate.h | |||
| @@ -253,27 +253,27 @@ enum ConditionCode { | |||
| 253 | 253 | ||
| 254 | // Flags for use with the APSR. | 254 | // Flags for use with the APSR. |
| 255 | enum : u32 { | 255 | enum : u32 { |
| 256 | NBIT = (1U << 31U), | 256 | NBIT = (1U << 31U), |
| 257 | ZBIT = (1 << 30), | 257 | ZBIT = (1 << 30), |
| 258 | CBIT = (1 << 29), | 258 | CBIT = (1 << 29), |
| 259 | VBIT = (1 << 28), | 259 | VBIT = (1 << 28), |
| 260 | QBIT = (1 << 27), | 260 | QBIT = (1 << 27), |
| 261 | JBIT = (1 << 24), | 261 | JBIT = (1 << 24), |
| 262 | EBIT = (1 << 9), | 262 | EBIT = (1 << 9), |
| 263 | ABIT = (1 << 8), | 263 | ABIT = (1 << 8), |
| 264 | IBIT = (1 << 7), | 264 | IBIT = (1 << 7), |
| 265 | FBIT = (1 << 6), | 265 | FBIT = (1 << 6), |
| 266 | TBIT = (1 << 5), | 266 | TBIT = (1 << 5), |
| 267 | 267 | ||
| 268 | // Masks for groups of bits in the APSR. | 268 | // Masks for groups of bits in the APSR. |
| 269 | MODEBITS = 0x1F, | 269 | MODEBITS = 0x1F, |
| 270 | INTBITS = 0x1C0, | 270 | INTBITS = 0x1C0, |
| 271 | }; | 271 | }; |
| 272 | 272 | ||
| 273 | // Values for Emulate. | 273 | // Values for Emulate. |
| 274 | enum { | 274 | enum { |
| 275 | STOP = 0, // Stop | 275 | STOP = 0, // Stop |
| 276 | CHANGEMODE = 1, // Change mode | 276 | CHANGEMODE = 1, // Change mode |
| 277 | ONCE = 2, // Execute just one iteration | 277 | ONCE = 2, // Execute just one iteration |
| 278 | RUN = 3 // Continuous execution | 278 | RUN = 3 // Continuous execution |
| 279 | }; | 279 | }; |
diff --git a/src/core/arm/skyeye_common/armsupp.cpp b/src/core/arm/skyeye_common/armsupp.cpp index e1d4509c4..affbf193a 100644 --- a/src/core/arm/skyeye_common/armsupp.cpp +++ b/src/core/arm/skyeye_common/armsupp.cpp | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | 19 | ||
| 20 | #include "core/mem_map.h" | 20 | #include "core/mem_map.h" |
| 21 | #include "core/arm/skyeye_common/arm_regformat.h" | 21 | #include "core/arm/skyeye_common/arm_regformat.h" |
| 22 | #include "core/arm/skyeye_common/armdefs.h" | 22 | #include "core/arm/skyeye_common/armstate.h" |
| 23 | #include "core/arm/skyeye_common/armsupp.h" | 23 | #include "core/arm/skyeye_common/armsupp.h" |
| 24 | 24 | ||
| 25 | // Unsigned sum of absolute difference | 25 | // Unsigned sum of absolute difference |
diff --git a/src/core/arm/skyeye_common/vfp/vfp.cpp b/src/core/arm/skyeye_common/vfp/vfp.cpp index ed9ade886..26f303de4 100644 --- a/src/core/arm/skyeye_common/vfp/vfp.cpp +++ b/src/core/arm/skyeye_common/vfp/vfp.cpp | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include "common/common_funcs.h" | 23 | #include "common/common_funcs.h" |
| 24 | #include "common/logging/log.h" | 24 | #include "common/logging/log.h" |
| 25 | 25 | ||
| 26 | #include "core/arm/skyeye_common/armdefs.h" | 26 | #include "core/arm/skyeye_common/armstate.h" |
| 27 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" | 27 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" |
| 28 | #include "core/arm/skyeye_common/vfp/vfp.h" | 28 | #include "core/arm/skyeye_common/vfp/vfp.h" |
| 29 | 29 | ||
diff --git a/src/core/arm/skyeye_common/vfp/vfp_helper.h b/src/core/arm/skyeye_common/vfp/vfp_helper.h index f318e486a..91a8d4d57 100644 --- a/src/core/arm/skyeye_common/vfp/vfp_helper.h +++ b/src/core/arm/skyeye_common/vfp/vfp_helper.h | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | 34 | ||
| 35 | #include <cstdio> | 35 | #include <cstdio> |
| 36 | #include "common/common_types.h" | 36 | #include "common/common_types.h" |
| 37 | #include "core/arm/skyeye_common/armdefs.h" | 37 | #include "core/arm/skyeye_common/armstate.h" |
| 38 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" | 38 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" |
| 39 | 39 | ||
| 40 | #define do_div(n, base) {n/=base;} | 40 | #define do_div(n, base) {n/=base;} |