Cosmos/source/Indy.IL2CPU.Assembler.X86/Call.cs
mterwoord_cp 743e531621
2007-09-02 13:45:58 +00:00

19 lines
No EOL
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode(0xFFFFFFFF, "call")]
public class Call: Instruction {
public readonly string Address;
public Call(string aAddress) {
Address = aAddress;
}
public override string ToString() {
return "call " + Address;
}
}
}