diff options
| author | 2014-09-10 21:27:14 -0400 | |
|---|---|---|
| committer | 2014-10-25 14:11:39 -0400 | |
| commit | b5e65245948647b94dfd60c1288f030a76c69a83 (patch) | |
| tree | 1c8e2afd3ff59f8c5b93970b62f4f1d1bc251852 /src/core/CMakeLists.txt | |
| parent | Merge pull request #149 from linkmauve/open-file-directly-fix (diff) | |
| download | yuzu-b5e65245948647b94dfd60c1288f030a76c69a83.tar.gz yuzu-b5e65245948647b94dfd60c1288f030a76c69a83.tar.xz yuzu-b5e65245948647b94dfd60c1288f030a76c69a83.zip | |
ARM: Reorganized file structure to move shared SkyEye code to a more common area.
Removed s_ prefix
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 06df9a677..d87e5ad49 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -9,10 +9,6 @@ set(SRCS | |||
| 9 | arm/interpreter/mmu/tlb.cpp | 9 | arm/interpreter/mmu/tlb.cpp |
| 10 | arm/interpreter/mmu/wb.cpp | 10 | arm/interpreter/mmu/wb.cpp |
| 11 | arm/interpreter/mmu/xscale_copro.cpp | 11 | arm/interpreter/mmu/xscale_copro.cpp |
| 12 | arm/interpreter/vfp/vfp.cpp | ||
| 13 | arm/interpreter/vfp/vfpdouble.cpp | ||
| 14 | arm/interpreter/vfp/vfpinstr.cpp | ||
| 15 | arm/interpreter/vfp/vfpsingle.cpp | ||
| 16 | arm/interpreter/arm_interpreter.cpp | 12 | arm/interpreter/arm_interpreter.cpp |
| 17 | arm/interpreter/armcopro.cpp | 13 | arm/interpreter/armcopro.cpp |
| 18 | arm/interpreter/armemu.cpp | 14 | arm/interpreter/armemu.cpp |
| @@ -22,6 +18,10 @@ set(SRCS | |||
| 22 | arm/interpreter/armsupp.cpp | 18 | arm/interpreter/armsupp.cpp |
| 23 | arm/interpreter/armvirt.cpp | 19 | arm/interpreter/armvirt.cpp |
| 24 | arm/interpreter/thumbemu.cpp | 20 | arm/interpreter/thumbemu.cpp |
| 21 | arm/skyeye_common/vfp/vfp.cpp | ||
| 22 | arm/skyeye_common/vfp/vfpdouble.cpp | ||
| 23 | arm/skyeye_common/vfp/vfpinstr.cpp | ||
| 24 | arm/skyeye_common/vfp/vfpsingle.cpp | ||
| 25 | file_sys/archive_romfs.cpp | 25 | file_sys/archive_romfs.cpp |
| 26 | file_sys/archive_sdmc.cpp | 26 | file_sys/archive_sdmc.cpp |
| 27 | file_sys/file_romfs.cpp | 27 | file_sys/file_romfs.cpp |
| @@ -63,23 +63,23 @@ set(SRCS | |||
| 63 | set(HEADERS | 63 | set(HEADERS |
| 64 | arm/disassembler/arm_disasm.h | 64 | arm/disassembler/arm_disasm.h |
| 65 | arm/disassembler/load_symbol_map.h | 65 | arm/disassembler/load_symbol_map.h |
| 66 | arm/interpreter/arm_interpreter.h | ||
| 66 | arm/interpreter/mmu/arm1176jzf_s_mmu.h | 67 | arm/interpreter/mmu/arm1176jzf_s_mmu.h |
| 67 | arm/interpreter/mmu/cache.h | 68 | arm/interpreter/mmu/cache.h |
| 68 | arm/interpreter/mmu/rb.h | 69 | arm/interpreter/mmu/rb.h |
| 69 | arm/interpreter/mmu/sa_mmu.h | 70 | arm/interpreter/mmu/sa_mmu.h |
| 70 | arm/interpreter/mmu/tlb.h | 71 | arm/interpreter/mmu/tlb.h |
| 71 | arm/interpreter/mmu/wb.h | 72 | arm/interpreter/mmu/wb.h |
| 72 | arm/interpreter/vfp/asm_vfp.h | 73 | arm/skyeye_common/vfp/asm_vfp.h |
| 73 | arm/interpreter/vfp/vfp.h | 74 | arm/skyeye_common/vfp/vfp.h |
| 74 | arm/interpreter/vfp/vfp_helper.h | 75 | arm/skyeye_common/vfp/vfp_helper.h |
| 75 | arm/interpreter/arm_interpreter.h | 76 | arm/skyeye_common/arm_regformat.h |
| 76 | arm/interpreter/arm_regformat.h | 77 | arm/skyeye_common/armcpu.h |
| 77 | arm/interpreter/armcpu.h | 78 | arm/skyeye_common/armdefs.h |
| 78 | arm/interpreter/armdefs.h | 79 | arm/skyeye_common/armemu.h |
| 79 | arm/interpreter/armemu.h | 80 | arm/skyeye_common/armmmu.h |
| 80 | arm/interpreter/armmmu.h | 81 | arm/skyeye_common/armos.h |
| 81 | arm/interpreter/armos.h | 82 | arm/skyeye_common/skyeye_defs.h |
| 82 | arm/interpreter/skyeye_defs.h | ||
| 83 | arm/arm_interface.h | 83 | arm/arm_interface.h |
| 84 | file_sys/archive.h | 84 | file_sys/archive.h |
| 85 | file_sys/archive_romfs.h | 85 | file_sys/archive_romfs.h |