Cosmos/source2/IL2PCU/Cosmos.IL2CPU/OpCodeAttribute.cs
kudzu_cp ef59c5abe5 -Support for multipel opcodes per class
-First consolidation of branch instructions
2009-07-26 21:59:27 +00:00

16 lines
No EOL
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU {
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
public class OpCodeAttribute : Attribute {
public readonly ILOpCode.Code OpCode;
public OpCodeAttribute(ILOpCode.Code aOpCode) {
OpCode = aOpCode;
}
}
}