mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
22 lines
No EOL
574 B
C#
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();
|
|
}
|
|
}
|
|
} |