Cosmos/source/Indy.IL2CPU.IL.X86.Native/NativeMethodFooterOp.cs
2007-10-07 11:05:38 +00:00

22 lines
No EOL
574 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.IL.X86;
using Mono.Cecil;
using Mono.Cecil.Cil;
using CPU = Indy.IL2CPU.Assembler.X86;
namespace Indy.IL2CPU.IL.X86.Native {
public class NativeMethodFooterOp: X86MethodFooterOp {
private string mLabelName;
public NativeMethodFooterOp(Instruction aInstruction, MethodInformation aMethodInfo)
: base(aInstruction, aMethodInfo) {
mLabelName = aMethodInfo.LabelName;
}
public override void DoAssemble() {
base.DoAssemble();
}
}
}