mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
25 lines
645 B
C#
25 lines
645 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
using CPU = Indy.IL2CPU.Assembler;
|
|
using CPUx86 = Indy.IL2CPU.Assembler.X86;
|
|
using System.Reflection;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
public class X86InitVmtImplementationOp: InitVmtImplementationOp {
|
|
public X86InitVmtImplementationOp(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
}
|
|
|
|
protected override void Pushd(string aValue) {
|
|
new CPUx86.Pushd(aValue);
|
|
}
|
|
|
|
protected override void Call(MethodBase aMethod) {
|
|
new CPUx86.Call(CPU.Label.GenerateLabelName(aMethod));
|
|
}
|
|
}
|
|
}
|