public int sceIoAddDrv(PspIoDrv* PspIoDrv)
        {
            return 0;

            var Name = PspMemory.ReadStringz(PspIoDrv->name, Encoding.UTF8);
            HleIoManager.SetDriver(Name + ":", new GuestHleIoDriver(PspEmulatorContext, PspIoDrv));
            return 0;
        }
 public int sceIoAddDrv(PspIoDrv* PspIoDrv)
 {
     throw (new NotImplementedException());
 }
			public GuestHleIoDriver(PspEmulatorContext PspEmulatorContext, PspIoDrv* PspIoDrv)
			{
				PspEmulatorContext.InjectDependencesTo(this);
				this.PspIoDrv = PspIoDrv;
			}