summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/csnd_snd.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-06 04:48:58 +0100
committerbunnei <bunneidev@gmail.com>2015-01-06 04:48:58 +0100
commit9eaef4e04ac23640867448eb2ad416c23cda93e3 (patch)
tree65877eaf75b7d6f8c1fd06c6ad7c40cabe40a352 /src/core/hle/service/csnd_snd.cpp
parentMerge pull request #272 from rohit-n/sign-compare (diff)
parentServices: Clean up a few things and add a few function names (diff)
downloadyuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.gz
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.bz2
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.lz
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.xz
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.zst
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.zip
Diffstat (limited to 'src/core/hle/service/csnd_snd.cpp')
-rw-r--r--src/core/hle/service/csnd_snd.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/hle/service/csnd_snd.cpp b/src/core/hle/service/csnd_snd.cpp
index aef8cfbca..3a557efe1 100644
--- a/src/core/hle/service/csnd_snd.cpp
+++ b/src/core/hle/service/csnd_snd.cpp
@@ -14,16 +14,15 @@ namespace CSND_SND {
const Interface::FunctionInfo FunctionTable[] = {
{0x00010140, nullptr, "Initialize"},
{0x00020000, nullptr, "Shutdown"},
- {0x00030040, nullptr, "Unknown"},
- {0x00040080, nullptr, "Unknown"},
- {0x00050000, nullptr, "Unknown"},
- {0x00060000, nullptr, "Unknown"},
- {0x00070000, nullptr, "Unknown"},
- {0x00080040, nullptr, "Unknown"},
+ {0x00030040, nullptr, "ExecuteType0Commands"},
+ {0x00040080, nullptr, "ExecuteType1Commands"},
+ {0x00050000, nullptr, "AcquireSoundChannels"},
+ {0x00060000, nullptr, "ReleaseSoundChannels"},
+ {0x00070000, nullptr, "AcquireCaptureDevice"},
+ {0x00080040, nullptr, "ReleaseCaptureDevice"},
{0x00090082, nullptr, "FlushDCache"},
{0x000A0082, nullptr, "StoreDCache"},
{0x000B0082, nullptr, "InvalidateDCache"},
- {0x000C0000, nullptr, "Unknown"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////