namespace Ryujinx.Memory { /// /// Function that handles a invalid memory access from the emulated CPU. /// /// Virtual address of the invalid region that is being accessed /// True if the invalid access should be ignored, false otherwise public delegate bool InvalidAccessHandler(ulong va); }