Cosmos/source/Indy.IL2CPU.IL.X86/LdStr.cs
mterwoord_cp 430f9dc75b
2007-08-30 08:19:16 +00:00

13 lines
No EOL
354 B
C#

using System;
using System.IO;
using Mono.Cecil.Cil;
namespace Indy.IL2CPU.IL.X86 {
internal class LdStr: IL.LdStr {
public override void Assemble(Instruction aInstruction, BinaryWriter aOutput) {
// Operand contains the string to be loaded
//new CPU.
Console.WriteLine("LdStr, string = '{0}'", aInstruction.Operand);
}
}
}