mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
633 B
C#
23 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Reflection;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
public abstract class MainEntryPointOp: Op {
|
|
protected MainEntryPointOp(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
}
|
|
|
|
public abstract void Enter(string aName);
|
|
public abstract void Exit();
|
|
public abstract void Pushd(string aValue);
|
|
public abstract void Call(MethodBase aMethod);
|
|
public abstract void Call(string aLabelName);
|
|
|
|
public override void DoAssemble() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|