Cosmos/source/Indy.IL2CPU.IL.X86.Native/NativeMethodFooterOp.cs
2008-02-04 08:17:37 +00:00

22 lines
No EOL
523 B
C#

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