InvalidAccessHandler.cs
1 namespace Ryujinx.Memory 2 { 3 /// <summary> 4 /// Function that handles a invalid memory access from the emulated CPU. 5 /// </summary> 6 /// <param name="va">Virtual address of the invalid region that is being accessed</param> 7 /// <returns>True if the invalid access should be ignored, false otherwise</returns> 8 public delegate bool InvalidAccessHandler(ulong va); 9 }