mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
21 lines
368 B
C#
21 lines
368 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,
|
|
}
|
|
}
|