4e430760b4
* Implement NPDM files parser (Currently not used in Ryujinx) * Add credits * Add Swap32 * Update Npdm.cs * Update ACI0.cs * Update ACID.cs * Update Npdm.cs * Update EndianSwap.cs * Update ACI0.cs * Update ACID.cs * Update KernelAccessControl.cs * Update NpdmInfo.cs * Update ServiceAccessControl.cs * Update NpdmInfo.cs
9 lines
196 B
C#
9 lines
196 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Loaders.Npdm
|
|
{
|
|
public class InvalidNpdmException : Exception
|
|
{
|
|
public InvalidNpdmException(string ExMsg) : base(ExMsg) { }
|
|
}
|
|
}
|