mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
15 lines
No EOL
445 B
C#
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);
|
|
}
|
|
}
|
|
} |