Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCode.cs
kudzu_cp ef42fa8028
2009-07-23 14:15:55 +00:00

19 lines
592 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU {
// Attribute
// ILOpcode represents the opcode and provides all parsing and scanning support.
// No assembly support is included except a refernece to ILOp
public class ILOpCode {
// private Init function called by descendant ctors
//ILOp: AssemblerOp;
//OpCode: OpCode - reference to instance from System.Emit.OpCodes
//TODO: Change this to abstract
public virtual void Scan(ILReader aReader, ILScanner aScanner) {
}
}
}