diff --git a/src/core/hle/service/pctl/pctl_a.cpp b/src/core/hle/service/pctl/pctl_a.cpp
index 904a31c6b7f60f3eee8ecd952b0962cdc3980ccc..8d44627732c696133b26dfe275587f1966c101f3 100644
--- a/src/core/hle/service/pctl/pctl_a.cpp
+++ b/src/core/hle/service/pctl/pctl_a.cpp
@@ -9,11 +9,16 @@
 namespace Service {
 namespace PCTL {
 
+class IParentalControlService final : public ServiceFramework<IParentalControlService> {
+public:
+    IParentalControlService() : ServiceFramework("IParentalControlService") {}
+};
+
 void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
-    LOG_WARNING(Service, "(STUBBED) called");
-    IPC::RequestBuilder rb{ctx, 2};
+    IPC::RequestBuilder rb{ ctx, 2, 0, 0, 1 };
     rb.Push(RESULT_SUCCESS);
-    // TODO(Subv): This should return an IParentalControlService interface.
+    rb.PushIpcInterface<IParentalControlService>();
+    LOG_DEBUG(Service, "called");
 }
 
 PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {