Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/ILOp.cs
gero_cp 0143db774e
2009-08-23 21:41:36 +00:00

19 lines
451 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 new readonly Assembler Assembler;
protected ILOp( Cosmos.IL2CPU.Assembler aAsmblr )
: base( aAsmblr )
{
Assembler = ( Assembler )aAsmblr;
}
}
}