aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/IntermediateRepresentation/Multiplier.cs
blob: 6bcdda01401f1a8e2c073f7d1a8ed89888c56a7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace ARMeilleure.IntermediateRepresentation
{
    enum Multiplier
    {
        x1 = 0,
        x2 = 1,
        x4 = 2,
        x8 = 3,
        x16 = 4,
    }
}