summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/nfc_m.cpp
blob: f43b4029aeefb48d3acbdd695474bf2f967576f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/nfc/nfc.h"
#include "core/hle/service/nfc/nfc_m.h"

namespace Service {
namespace NFC {

const Interface::FunctionInfo FunctionTable[] = {
    // clang-format off
    // nfc:u shared commands
    {0x00010040, nullptr, "Initialize"},
    {0x00020040, nullptr, "Shutdown"},
    {0x00030000, nullptr, "StartCommunication"},
    {0x00040000, nullptr, "StopCommunication"},
    {0x00050040, nullptr, "StartTagScanning"},
    {0x00060000, nullptr, "StopTagScanning"},
    {0x00070000, nullptr, "LoadAmiiboData"},
    {0x00080000, nullptr, "ResetTagScanState"},
    {0x00090002, nullptr, "UpdateStoredAmiiboData"},
    {0x000B0000, GetTagInRangeEvent, "GetTagInRangeEvent"},
    {0x000D0000, nullptr, "GetTagState"},
    {0x000F0000, nullptr, "CommunicationGetStatus"},
    {0x00100000, nullptr, "GetTagInfo2"},
    {0x00110000, nullptr, "GetTagInfo"},
    {0x00120000, nullptr, "CommunicationGetResult"},
    {0x00130040, nullptr, "OpenAppData"},
    {0x00140384, nullptr, "InitializeWriteAppData"},
    {0x00150040, nullptr, "ReadAppData"},
    {0x00160242, nullptr, "WriteAppData"},
    {0x00170000, nullptr, "GetAmiiboSettings"},
    {0x00180000, nullptr, "GetAmiiboConfig"},
    {0x00190000, nullptr, "GetAppDataInitStruct"},
    // nfc:m
    {0x04040A40, nullptr, "SetAmiiboSettings"}
    // clang-format on
};

NFC_M::NFC_M() {
    Register(FunctionTable);
}

} // namespace NFC
} // namespace Service