mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 06:25:46 +00:00
service: Add nfc services
3dbrew was used for the command information.
This commit is contained in:
parent
0666271a28
commit
c74ecaaa85
8 changed files with 199 additions and 30 deletions
18
src/core/hle/service/nfc/nfc.cpp
Normal file
18
src/core/hle/service/nfc/nfc.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
// 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"
|
||||
#include "core/hle/service/nfc/nfc_u.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NFC {
|
||||
|
||||
void Init() {
|
||||
AddService(new NFC_M());
|
||||
AddService(new NFC_U());
|
||||
}
|
||||
|
||||
} // namespace NFC
|
||||
} // namespace Service
|
Loading…
Add table
Add a link
Reference in a new issue