mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
23 lines
No EOL
712 B
C#
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);
|
|
}
|
|
}
|
|
} |