using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Client.Common
{
///
/// This enum specify the size of a
///
public enum WatchSize
{
///
/// One byte (8 bits)
/// Use this for
///
Byte = 1,
///
/// 2 bytes (16 bits)
/// Use this for
///
Word = 2,
///
/// 4 bytes (32 bits)
/// Use this for
///
DWord = 4,
///
/// Special case used for a separator in ramwatch
/// Use this for
///
Separator = 0
}
}