Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/ILOpX86.cs
kudzu_cp ba872eba56
2009-07-26 00:56:42 +00:00

16 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.X86 {
public abstract class ILOpX86 : Cosmos.IL2CPU.ILOp {
protected ILOpX86(ILOpCode aOpCode):base(aOpCode)
{
}
//TODO: remove this when all descendants implement this
public override void Execute(UInt32 aMethodUID) {
}
}
}