diff options
| author | bunnei <bunneidev@gmail.com> | 2014-05-16 21:54:02 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2014-05-16 21:54:02 -0400 |
| commit | a4fd257469bc06d1474a2e6e8df9dbd233ac79a5 (patch) | |
| tree | 3b9d45d77897ba308d09df2567d3bead5dddbd25 /src/core/CMakeLists.txt | |
| parent | bdc54d0d4897841a4d24aee80311bfb1f0eba884 (diff) | |
| parent | 92be5517c40fd9abf89455f606c321b629c0698e (diff) | |
Merge pull request #17 from bunnei/arm-vfp
ARM VFP support - integrated from SkyEye
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index eb4fef381..fdf68c386 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -7,6 +7,7 @@ set(SRCS core.cpp arm/disassembler/arm_disasm.cpp arm/disassembler/load_symbol_map.cpp arm/interpreter/arm_interpreter.cpp + arm/interpreter/armcopro.cpp arm/interpreter/armemu.cpp arm/interpreter/arminit.cpp arm/interpreter/armmmu.cpp @@ -14,7 +15,18 @@ set(SRCS core.cpp arm/interpreter/armsupp.cpp arm/interpreter/armvirt.cpp arm/interpreter/thumbemu.cpp - arm/mmu/arm1176jzf_s_mmu.cpp + arm/interpreter/vfp/vfp.cpp + arm/interpreter/vfp/vfpdouble.cpp + arm/interpreter/vfp/vfpinstr.cpp + arm/interpreter/vfp/vfpsingle.cpp + arm/interpreter/mmu/arm1176jzf_s_mmu.cpp + arm/interpreter/mmu/cache.cpp + arm/interpreter/mmu/maverick.cpp + arm/interpreter/mmu/rb.cpp + arm/interpreter/mmu/sa_mmu.cpp + arm/interpreter/mmu/tlb.cpp + arm/interpreter/mmu/wb.cpp + arm/interpreter/mmu/xscale_copro.cpp elf/elf_reader.cpp file_sys/directory_file_system.cpp file_sys/meta_file_system.cpp |
