Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/ILOp.cs
kudzu_cp 3f3b62b9d5
2009-07-26 15:46:58 +00:00

17 lines
431 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;
}
}