35 |
|
#endregion |
36 |
|
#region IAcceptsMemoryRange members |
37 |
|
private int MemoryStart { get { return MemView.MemoryStart; } } |
38 |
< |
private int MemorySize { get { return MemView.MemorySize; } } |
38 |
> |
private uint MemorySize { get { return MemView.MemorySize; } } |
39 |
|
#endregion |
40 |
|
|
41 |
|
#region IAcceptsExternalMemoryAddress |
42 |
< |
public bool AcceptExternalMemoryAddress(uint address) |
42 |
> |
public bool AcceptExternalMemoryAddress(int address) |
43 |
|
{ |
44 |
|
if (!((MemoryStart <= address) && (address <= (MemoryStart + MemorySize)))) { return false; } |
45 |
|
MemView.GotoAddress(address); |