summaryrefslogtreecommitdiffstats
path: root/src/core/arm/disassembler/load_symbol_map.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-01 05:46:06 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-01 05:46:06 +0200
commit29da6e9ab57a37abafc9c91e00bb01daf451b3ad (patch)
tree842d84bacad354bd9c447dfe99c97785f1b618a8 /src/core/arm/disassembler/load_symbol_map.h
parentfixed a bug where ExeFs code was being incorrectly masked (diff)
downloadyuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar.gz
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar.bz2
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar.lz
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar.xz
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.tar.zst
yuzu-29da6e9ab57a37abafc9c91e00bb01daf451b3ad.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/disassembler/load_symbol_map.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/arm/disassembler/load_symbol_map.h b/src/core/arm/disassembler/load_symbol_map.h
new file mode 100644
index 000000000..837cca99b
--- /dev/null
+++ b/src/core/arm/disassembler/load_symbol_map.h
@@ -0,0 +1,13 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <string>
+
+/*
+ * Loads a symbol map file for use with the disassembler
+ * @param filename String filename path of symbol map file
+ */
+void LoadSymbolMap(std::string filename);