//[HlePspNotImplemented]
 public int sceIoDevctl(string DeviceName, uint Command, byte *InputPointer, int InputLength,
                        byte *OutputPointer, int OutputLength)
 {
     try
     {
         var Info = HleIoManager.ParseDeviceName(DeviceName);
         return(Info.HleIoDrvFileArg.HleIoDriver.IoDevctl(Info.HleIoDrvFileArg, DeviceName, Command,
                                                          new Span <byte>(InputPointer, InputLength), new Span <byte>(OutputPointer, OutputLength)));
     }
     catch (NotImplementedException NotImplementedException)
     {
         Console.Error.WriteLine(NotImplementedException);
         return(-1);
     }
     finally
     {
         _DelayIo(IoDelayType.Devctl);
     }
 }