summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/disassembler/load_symbol_map.cpp1
-rw-r--r--src/core/core.cpp6
-rw-r--r--src/core/hle/config_mem.cpp1
-rw-r--r--src/core/hle/coprocessor.cpp1
-rw-r--r--src/core/hle/hle.cpp1
-rw-r--r--src/core/hle/kernel/archive.cpp1
-rw-r--r--src/core/hle/kernel/kernel.cpp2
-rw-r--r--src/core/hle/kernel/thread.cpp3
-rw-r--r--src/core/hle/service/fs.cpp2
-rw-r--r--src/core/hle/service/gsp.cpp1
-rw-r--r--src/core/hle/service/ndm.cpp2
-rw-r--r--src/core/hle/service/service.cpp5
-rw-r--r--src/core/hle/service/srv.cpp1
-rw-r--r--src/core/hle/svc.cpp3
-rw-r--r--src/core/hw/gpu.cpp2
-rw-r--r--src/core/hw/hw.cpp1
-rw-r--r--src/core/hw/ndma.cpp1
-rw-r--r--src/core/loader/loader.cpp1
-rw-r--r--src/core/mem_map.cpp1
-rw-r--r--src/core/mem_map_funcs.cpp1
20 files changed, 0 insertions, 37 deletions
diff --git a/src/core/arm/disassembler/load_symbol_map.cpp b/src/core/arm/disassembler/load_symbol_map.cpp
index d7fc0a042..f156c43ce 100644
--- a/src/core/arm/disassembler/load_symbol_map.cpp
+++ b/src/core/arm/disassembler/load_symbol_map.cpp
@@ -6,7 +6,6 @@
6#include <vector> 6#include <vector>
7 7
8#include "common/symbols.h" 8#include "common/symbols.h"
9#include "common/common_types.h"
10#include "common/file_util.h" 9#include "common/file_util.h"
11 10
12#include "core/arm/disassembler/load_symbol_map.h" 11#include "core/arm/disassembler/load_symbol_map.h"
diff --git a/src/core/core.cpp b/src/core/core.cpp
index f21801e52..01d4f0afa 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -3,15 +3,9 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/log.h"
7#include "common/symbols.h"
8
9#include "video_core/video_core.h"
10 6
11#include "core/core.h" 7#include "core/core.h"
12#include "core/mem_map.h"
13#include "core/hw/hw.h" 8#include "core/hw/hw.h"
14#include "core/hw/gpu.h"
15#include "core/arm/disassembler/arm_disasm.h" 9#include "core/arm/disassembler/arm_disasm.h"
16#include "core/arm/interpreter/arm_interpreter.h" 10#include "core/arm/interpreter/arm_interpreter.h"
17 11
diff --git a/src/core/hle/config_mem.cpp b/src/core/hle/config_mem.cpp
index 8c898b265..a45e61427 100644
--- a/src/core/hle/config_mem.cpp
+++ b/src/core/hle/config_mem.cpp
@@ -3,7 +3,6 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/log.h"
7 6
8#include "core/hle/config_mem.h" 7#include "core/hle/config_mem.h"
9 8
diff --git a/src/core/hle/coprocessor.cpp b/src/core/hle/coprocessor.cpp
index 9a5b0deda..1eb33eb86 100644
--- a/src/core/hle/coprocessor.cpp
+++ b/src/core/hle/coprocessor.cpp
@@ -5,7 +5,6 @@
5#include "core/hle/coprocessor.h" 5#include "core/hle/coprocessor.h"
6#include "core/hle/hle.h" 6#include "core/hle/hle.h"
7#include "core/mem_map.h" 7#include "core/mem_map.h"
8#include "core/core.h"
9 8
10namespace HLE { 9namespace HLE {
11 10
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 53cda4a61..b03894ad7 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -6,7 +6,6 @@
6 6
7#include "core/mem_map.h" 7#include "core/mem_map.h"
8#include "core/hle/hle.h" 8#include "core/hle/hle.h"
9#include "core/hle/svc.h"
10#include "core/hle/kernel/thread.h" 9#include "core/hle/kernel/thread.h"
11#include "core/hle/service/service.h" 10#include "core/hle/service/service.h"
12 11
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp
index 1596367c3..20536f40f 100644
--- a/src/core/hle/kernel/archive.cpp
+++ b/src/core/hle/kernel/archive.cpp
@@ -7,7 +7,6 @@
7 7
8#include "core/file_sys/archive.h" 8#include "core/file_sys/archive.h"
9#include "core/hle/service/service.h" 9#include "core/hle/service/service.h"
10#include "core/hle/kernel/kernel.h"
11#include "core/hle/kernel/archive.h" 10#include "core/hle/kernel/archive.h"
12 11
13//////////////////////////////////////////////////////////////////////////////////////////////////// 12////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index a4a258875..e56f1879e 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -2,8 +2,6 @@
2// Licensed under GPLv2 2// Licensed under GPLv2
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <string.h>
6
7#include "common/common.h" 5#include "common/common.h"
8 6
9#include "core/core.h" 7#include "core/core.h"
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 8bd9ca1a1..33c0b2a47 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -3,10 +3,8 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm> 5#include <algorithm>
6#include <cstdio>
7#include <list> 6#include <list>
8#include <map> 7#include <map>
9#include <string>
10#include <vector> 8#include <vector>
11 9
12#include "common/common.h" 10#include "common/common.h"
@@ -15,7 +13,6 @@
15#include "core/core.h" 13#include "core/core.h"
16#include "core/mem_map.h" 14#include "core/mem_map.h"
17#include "core/hle/hle.h" 15#include "core/hle/hle.h"
18#include "core/hle/svc.h"
19#include "core/hle/kernel/kernel.h" 16#include "core/hle/kernel/kernel.h"
20#include "core/hle/kernel/thread.h" 17#include "core/hle/kernel/thread.h"
21 18
diff --git a/src/core/hle/service/fs.cpp b/src/core/hle/service/fs.cpp
index 5eabf36ad..9e1998b0f 100644
--- a/src/core/hle/service/fs.cpp
+++ b/src/core/hle/service/fs.cpp
@@ -4,8 +4,6 @@
4 4
5#include "common/common.h" 5#include "common/common.h"
6 6
7#include "core/loader/loader.h"
8#include "core/hle/hle.h"
9#include "core/hle/service/fs.h" 7#include "core/hle/service/fs.h"
10#include "core/hle/kernel/archive.h" 8#include "core/hle/kernel/archive.h"
11 9
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 46c5a8ddd..accbe84e3 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -7,7 +7,6 @@
7#include "common/bit_field.h" 7#include "common/bit_field.h"
8 8
9#include "core/mem_map.h" 9#include "core/mem_map.h"
10#include "core/hle/hle.h"
11#include "core/hle/kernel/event.h" 10#include "core/hle/kernel/event.h"
12#include "core/hle/kernel/shared_memory.h" 11#include "core/hle/kernel/shared_memory.h"
13#include "core/hle/service/gsp.h" 12#include "core/hle/service/gsp.h"
diff --git a/src/core/hle/service/ndm.cpp b/src/core/hle/service/ndm.cpp
index 48755b6a7..f6af0a153 100644
--- a/src/core/hle/service/ndm.cpp
+++ b/src/core/hle/service/ndm.cpp
@@ -2,8 +2,6 @@
2// Licensed under GPLv2 2// Licensed under GPLv2
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/log.h"
6
7#include "core/hle/hle.h" 5#include "core/hle/hle.h"
8#include "core/hle/service/ndm.h" 6#include "core/hle/service/ndm.h"
9 7
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 00ac1c9c6..9eb1726aa 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -3,11 +3,8 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common.h" 5#include "common/common.h"
6#include "common/log.h"
7#include "common/string_util.h" 6#include "common/string_util.h"
8 7
9#include "core/hle/hle.h"
10
11#include "core/hle/service/service.h" 8#include "core/hle/service/service.h"
12#include "core/hle/service/apt.h" 9#include "core/hle/service/apt.h"
13#include "core/hle/service/fs.h" 10#include "core/hle/service/fs.h"
@@ -16,8 +13,6 @@
16#include "core/hle/service/ndm.h" 13#include "core/hle/service/ndm.h"
17#include "core/hle/service/srv.h" 14#include "core/hle/service/srv.h"
18 15
19#include "core/hle/kernel/kernel.h"
20
21namespace Service { 16namespace Service {
22 17
23Manager* g_manager = nullptr; ///< Service manager 18Manager* g_manager = nullptr; ///< Service manager
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 23be3cf2c..eb2c73f93 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -4,7 +4,6 @@
4 4
5#include "core/hle/hle.h" 5#include "core/hle/hle.h"
6#include "core/hle/service/srv.h" 6#include "core/hle/service/srv.h"
7#include "core/hle/service/service.h"
8#include "core/hle/kernel/event.h" 7#include "core/hle/kernel/event.h"
9 8
10//////////////////////////////////////////////////////////////////////////////////////////////////// 9////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index bdcfae6f5..07a750b89 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -3,7 +3,6 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <map> 5#include <map>
6#include <string>
7 6
8#include "common/string_util.h" 7#include "common/string_util.h"
9#include "common/symbols.h" 8#include "common/symbols.h"
@@ -12,13 +11,11 @@
12 11
13#include "core/hle/kernel/address_arbiter.h" 12#include "core/hle/kernel/address_arbiter.h"
14#include "core/hle/kernel/event.h" 13#include "core/hle/kernel/event.h"
15#include "core/hle/kernel/kernel.h"
16#include "core/hle/kernel/mutex.h" 14#include "core/hle/kernel/mutex.h"
17#include "core/hle/kernel/shared_memory.h" 15#include "core/hle/kernel/shared_memory.h"
18#include "core/hle/kernel/thread.h" 16#include "core/hle/kernel/thread.h"
19 17
20#include "core/hle/function_wrappers.h" 18#include "core/hle/function_wrappers.h"
21#include "core/hle/svc.h"
22#include "core/hle/service/service.h" 19#include "core/hle/service/service.h"
23 20
24//////////////////////////////////////////////////////////////////////////////////////////////////// 21////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 8709b8eb7..2e0943776 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -3,13 +3,11 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/log.h"
7 6
8#include "core/core.h" 7#include "core/core.h"
9#include "core/mem_map.h" 8#include "core/mem_map.h"
10 9
11#include "core/hle/hle.h" 10#include "core/hle/hle.h"
12#include "core/hle/kernel/thread.h"
13#include "core/hle/service/gsp.h" 11#include "core/hle/service/gsp.h"
14 12
15#include "core/hw/gpu.h" 13#include "core/hw/gpu.h"
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index ed70486e6..efd94f147 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -3,7 +3,6 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/log.h"
7 6
8#include "core/hw/hw.h" 7#include "core/hw/hw.h"
9#include "core/hw/gpu.h" 8#include "core/hw/gpu.h"
diff --git a/src/core/hw/ndma.cpp b/src/core/hw/ndma.cpp
index f6aa72d16..158241fd6 100644
--- a/src/core/hw/ndma.cpp
+++ b/src/core/hw/ndma.cpp
@@ -3,7 +3,6 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/log.h"
7 6
8#include "core/hw/ndma.h" 7#include "core/hw/ndma.h"
9 8
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 365f5a277..5cbb26f54 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -5,7 +5,6 @@
5#include <memory> 5#include <memory>
6 6
7#include "core/file_sys/archive_romfs.h" 7#include "core/file_sys/archive_romfs.h"
8#include "core/loader/loader.h"
9#include "core/loader/elf.h" 8#include "core/loader/elf.h"
10#include "core/loader/ncch.h" 9#include "core/loader/ncch.h"
11#include "core/hle/kernel/archive.h" 10#include "core/hle/kernel/archive.h"
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp
index 14fc01471..cf12f24d9 100644
--- a/src/core/mem_map.cpp
+++ b/src/core/mem_map.cpp
@@ -6,7 +6,6 @@
6#include "common/mem_arena.h" 6#include "common/mem_arena.h"
7 7
8#include "core/mem_map.h" 8#include "core/mem_map.h"
9#include "core/core.h"
10 9
11//////////////////////////////////////////////////////////////////////////////////////////////////// 10////////////////////////////////////////////////////////////////////////////////////////////////////
12 11
diff --git a/src/core/mem_map_funcs.cpp b/src/core/mem_map_funcs.cpp
index 391b75fc2..f510df835 100644
--- a/src/core/mem_map_funcs.cpp
+++ b/src/core/mem_map_funcs.cpp
@@ -8,7 +8,6 @@
8 8
9#include "core/mem_map.h" 9#include "core/mem_map.h"
10#include "core/hw/hw.h" 10#include "core/hw/hw.h"
11#include "hle/hle.h"
12#include "hle/config_mem.h" 11#include "hle/config_mem.h"
13 12
14namespace Memory { 13namespace Memory {