mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 03:39:43 +00:00
6030ecd415
locals and stack trace at the place where reactos is stopped. svn path=/trunk/tools/reactosdbg/; revision=759
20 lines
437 B
C#
20 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DebugProtocol
|
|
{
|
|
public class MemoryBlock
|
|
{
|
|
public readonly long Address;
|
|
public readonly byte[] Block;
|
|
static int mMemoryBlockSize = 256;
|
|
public MemoryBlock(long address)
|
|
{
|
|
Address = address;
|
|
Block = new byte[mMemoryBlockSize];
|
|
}
|
|
}
|
|
}
|