Cosmos/source/Indy.IL2CPU.Assembler/Call.cs
mterwoord_cp ce7ce6fe9a
2007-08-31 15:31:14 +00:00

16 lines
No EOL
342 B
C#

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