diff options
| author | 2015-05-12 22:38:29 -0300 | |
|---|---|---|
| committer | 2015-05-15 00:04:38 -0300 | |
| commit | 7ada357b2d12cf616672425a8961804b865354d6 (patch) | |
| tree | 983003c1efc0950605eca3aa7d135b7c8fe9edcf /src/core/CMakeLists.txt | |
| parent | Memmap: Remove unused declarations (diff) | |
| download | yuzu-7ada357b2d12cf616672425a8961804b865354d6.tar.gz yuzu-7ada357b2d12cf616672425a8961804b865354d6.tar.xz yuzu-7ada357b2d12cf616672425a8961804b865354d6.zip | |
Memmap: Re-organize memory function in two files
memory.cpp/h contains definitions related to acessing memory and
configuring the address space
mem_map.cpp/h contains higher-level definitions related to configuring
the address space accoording to the kernel and allocating memory.
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index ebedcb710..3b67cc49d 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -99,7 +99,7 @@ set(SRCS | |||
| 99 | loader/loader.cpp | 99 | loader/loader.cpp |
| 100 | loader/ncch.cpp | 100 | loader/ncch.cpp |
| 101 | mem_map.cpp | 101 | mem_map.cpp |
| 102 | mem_map_funcs.cpp | 102 | memory.cpp |
| 103 | settings.cpp | 103 | settings.cpp |
| 104 | system.cpp | 104 | system.cpp |
| 105 | ) | 105 | ) |
| @@ -211,6 +211,7 @@ set(HEADERS | |||
| 211 | loader/loader.h | 211 | loader/loader.h |
| 212 | loader/ncch.h | 212 | loader/ncch.h |
| 213 | mem_map.h | 213 | mem_map.h |
| 214 | memory.h | ||
| 214 | settings.h | 215 | settings.h |
| 215 | system.h | 216 | system.h |
| 216 | ) | 217 | ) |