mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-14 23:05:32 +00:00
224000c4c7
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
31 lines
661 B
C#
31 lines
661 B
C#
// <copyright file="Bits.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
using System;
|
|
|
|
[Flags]
|
|
public enum Bits
|
|
{
|
|
Bit0 = 1,
|
|
Bit1 = Bit0 << 1,
|
|
Bit2 = Bit1 << 1,
|
|
Bit3 = Bit2 << 1,
|
|
Bit4 = Bit3 << 1,
|
|
Bit5 = Bit4 << 1,
|
|
Bit6 = Bit5 << 1,
|
|
Bit7 = Bit6 << 1,
|
|
Bit8 = Bit7 << 1,
|
|
Bit9 = Bit8 << 1,
|
|
Bit10 = Bit9 << 1,
|
|
Bit11 = Bit10 << 1,
|
|
Bit12 = Bit11 << 1,
|
|
Bit13 = Bit12 << 1,
|
|
Bit14 = Bit13 << 1,
|
|
Bit15 = Bit14 << 1,
|
|
Bit16 = Bit15 << 1,
|
|
}
|
|
}
|