mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
14 lines
415 B
C#
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);
|
|
}
|
|
}
|
|
}
|