summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2015-01-11 07:46:44 +0100
committerarchshift <admin@archshift.com>2015-01-11 07:47:31 +0100
commit3b555e2512a4c521544e65daeb9970ae0130a511 (patch)
tree43f104d94f2dd6d2d5ff2545cfd9707995a12c9b /src/core
parentMerge pull request #459 from archshift/logs (diff)
downloadyuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar.gz
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar.bz2
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar.lz
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar.xz
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.tar.zst
yuzu-3b555e2512a4c521544e65daeb9970ae0130a511.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/y2r_u.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/core/hle/service/y2r_u.cpp b/src/core/hle/service/y2r_u.cpp
index f9e3619dd..b3d873ef0 100644
--- a/src/core/hle/service/y2r_u.cpp
+++ b/src/core/hle/service/y2r_u.cpp
@@ -12,6 +12,21 @@
namespace Y2R_U {
+/**
+ * Y2R_U::IsBusyConversion service function
+ * Outputs:
+ * 1 : Result of function, 0 on success, otherwise error code
+ * 2 : Whether the current conversion is of type busy conversion (?)
+ */
+static void IsBusyConversion(Service::Interface* self) {
+ u32* cmd_buff = Kernel::GetCommandBuffer();
+
+ cmd_buff[1] = RESULT_SUCCESS.raw;;
+ cmd_buff[2] = 0;
+
+ LOG_WARNING(Service, "(STUBBED) called");
+}
+
const Interface::FunctionInfo FunctionTable[] = {
{0x00010040, nullptr, "SetInputFormat"},
{0x00030040, nullptr, "SetOutputFormat"},
@@ -29,7 +44,7 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x00220040, nullptr, "SetAlpha"},
{0x00260000, nullptr, "StartConversion"},
{0x00270000, nullptr, "StopConversion"},
- {0x00280000, nullptr, "IsBusyConversion"},
+ {0x00280000, IsBusyConversion, "IsBusyConversion"},
{0x002A0000, nullptr, "PingProcess"},
{0x002B0000, nullptr, "DriverInitialize"},
{0x002C0000, nullptr, "DriverFinalize"}