mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
17 lines
313 B
C#
17 lines
313 B
C#
namespace MewtocolNet.RegisterAttributes {
|
|
/// <summary>
|
|
/// The size of the bitwise register
|
|
/// </summary>
|
|
public enum BitCount {
|
|
/// <summary>
|
|
/// 16 bit
|
|
/// </summary>
|
|
B16,
|
|
/// <summary>
|
|
/// 32 bit
|
|
/// </summary>
|
|
B32
|
|
}
|
|
|
|
}
|