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

23 lines
No EOL
712 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL.X86.Native {
public class NativeMainEntryMethodOp: X86MainEntryPointOp {
public NativeMainEntryMethodOp(ILReader aReader, MethodInformation aMethodInfo)
: base(aReader, aMethodInfo) {
}
public override void Enter(string aName) {
base.Enter(aName);
//Pushd("[ebp + 8]");
//Call(NativeOpCodeMap.Instance.GetGlueMethod(Cosmos.Kernel.Boot.Glue.GlueMethodTypeEnum.SaveBootInfoStruct));
}
public override void Exit() {
NativeMethodFooterOp.AssembleFooter(0, mAssembler, new MethodInformation.Variable[0], new MethodInformation.Argument[0], 0);
}
}
}