2e143365eb
* Optimized memory modified check This was initially in some cases more expensive than plainly sending the data. Now it should have way better performance. * Small refactoring * renamed InvalidAccessEventArgs * Renamed PtPageBits * Removed ValueRange(set) They are currently unused and won't be likely to be used in the near future
14 lines
No EOL
267 B
C#
14 lines
No EOL
267 B
C#
using System;
|
|
|
|
namespace ChocolArm64.Events
|
|
{
|
|
public class MemoryAccessEventArgs : EventArgs
|
|
{
|
|
public long Position { get; private set; }
|
|
|
|
public MemoryAccessEventArgs(long position)
|
|
{
|
|
Position = position;
|
|
}
|
|
}
|
|
} |