Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/ILOp.cs
kudzu_cp ac439029aa
2009-07-26 05:19:29 +00:00

20 lines
554 B
C#

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