Cosmos/source2/Compiler/Cosmos.Compiler.Assembler/OpCodeAttribute.cs

21 lines
No EOL
392 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.Assembler
{
public class OpCodeAttribute: Attribute
{
public OpCodeAttribute(string mnemonic)
{
Mnemonic = mnemonic;
}
public string Mnemonic
{
get;
set;
}
}
}