Cosmos/source/Indy.IL2CPU.IL/Call.cs
2007-08-29 15:39:16 +00:00

15 lines
No EOL
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil.Cil;
namespace Indy.IL2CPU.IL {
[OpCode(Code.Call)]
public class Call: Op {
public override void Assemble(Instruction aInstruction) {
Console.WriteLine("Call, Operand = '{0}' ({1})", aInstruction.Operand,
aInstruction.Operand == null ? "**NULL**" : aInstruction.Operand.GetType().FullName);
}
}
}