summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg_i.cpp
diff options
context:
space:
mode:
authorpurpasmart96 <purpasmart96@users.noreply.github.com>2014-11-12 22:13:08 +0100
committerpurpasmart96 <kanzoconfigz@hotmail.com>2014-11-21 02:09:57 +0100
commit9821bfcb8e6be2e220ae757d65d47cd478e8bfc8 (patch)
tree1d1d0a92efa278d7254c99245c10aa3b78ed700d /src/core/hle/service/cfg_i.cpp
parentMerge pull request #211 from linkmauve/master (diff)
downloadyuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar.gz
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar.bz2
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar.lz
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar.xz
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.tar.zst
yuzu-9821bfcb8e6be2e220ae757d65d47cd478e8bfc8.zip
Diffstat (limited to 'src/core/hle/service/cfg_i.cpp')
-rw-r--r--src/core/hle/service/cfg_i.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/core/hle/service/cfg_i.cpp b/src/core/hle/service/cfg_i.cpp
new file mode 100644
index 000000000..88d13d459
--- /dev/null
+++ b/src/core/hle/service/cfg_i.cpp
@@ -0,0 +1,59 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#include "common/log.h"
+#include "core/hle/hle.h"
+#include "core/hle/service/cfg_i.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace CFG_I
+
+namespace CFG_I {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x04010082, nullptr, "GetConfigInfoBlk8"},
+ {0x04020082, nullptr, "GetConfigInfoBlk4"},
+ {0x04030000, nullptr, "UpdateConfigNANDSavegame"},
+ {0x04040042, nullptr, "GetLocalFriendCodeSeedData"},
+ {0x04050000, nullptr, "GetLocalFriendCodeSeed"},
+ {0x04060000, nullptr, "SecureInfoGetRegion"},
+ {0x04070000, nullptr, "SecureInfoGetByte101"},
+ {0x04080042, nullptr, "SecureInfoGetSerialNo"},
+ {0x04090000, nullptr, "UpdateConfigBlk00040003"},
+ {0x08010082, nullptr, "GetConfigInfoBlk8"},
+ {0x08020082, nullptr, "GetConfigInfoBlk4"},
+ {0x08030000, nullptr, "UpdateConfigNANDSavegame"},
+ {0x080400C2, nullptr, "CreateConfigInfoBlk"},
+ {0x08050000, nullptr, "DeleteConfigNANDSavefile"},
+ {0x08060000, nullptr, "FormatConfig"},
+ {0x08070000, nullptr, "Unknown"},
+ {0x08080000, nullptr, "UpdateConfigBlk1"},
+ {0x08090000, nullptr, "UpdateConfigBlk2"},
+ {0x080A0000, nullptr, "UpdateConfigBlk3"},
+ {0x080B0082, nullptr, "SetGetLocalFriendCodeSeedData"},
+ {0x080C0042, nullptr, "SetLocalFriendCodeSeedSignature"},
+ {0x080D0000, nullptr, "DeleteCreateNANDLocalFriendCodeSeed"},
+ {0x080E0000, nullptr, "VerifySigLocalFriendCodeSeed"},
+ {0x080F0042, nullptr, "GetLocalFriendCodeSeedData"},
+ {0x08100000, nullptr, "GetLocalFriendCodeSeed"},
+ {0x08110084, nullptr, "SetSecureInfo"},
+ {0x08120000, nullptr, "DeleteCreateNANDSecureInfo"},
+ {0x08130000, nullptr, "VerifySigSecureInfo"},
+ {0x08140042, nullptr, "SecureInfoGetData"},
+ {0x08150042, nullptr, "SecureInfoGetSignature"},
+ {0x08160000, nullptr, "SecureInfoGetRegion"},
+ {0x08170000, nullptr, "SecureInfoGetByte101"},
+ {0x08180042, nullptr, "SecureInfoGetSerialNo"},
+};
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Interface class
+
+Interface::Interface() {
+ Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+}
+
+Interface::~Interface() {
+}
+
+} // namespace