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