Cosmos/source/Indy.IL2CPU.IL.X86/LdStr.cs
2007-08-29 15:34:15 +00:00

14 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil.Cil;
namespace Indy.IL2CPU.IL.X86 {
class LdStr : Indy.IL2CPU.IL.LdStr {
public override void Process(Instruction aInstruction) {
// Operand contains the string to be loaded
Console.WriteLine("LdStr, string = '{0}'", aInstruction.Operand);
}
}
}