Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/BitSize.cs
kudzu_cp a58ad95c10
2014-07-14 15:56:02 +00:00

21 lines
389 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.X86
{
[Flags]
public enum BitSize : int
{
None,
Bits8 = 8,
Bits16 = 16,
Bits32 = 32,
Bits64 = 64,
Bits80 = 80,
Bits128 = 128,
Bits256 = 256,
Default = Bits32,
}
}