Cosmos/source/Indy.IL2CPU.Assembler/Move.cs
mterwoord_cp c09c0f2459
2007-08-30 17:33:25 +00:00

19 lines
452 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
public class Move: Instruction {
public readonly string Destination;
public readonly string Source;
public Move(string aDestination, string aSource) {
Destination = aDestination;
Source = aSource;
}
public override string ToString() {
return "mov " + Destination + "," + Source;
}
}
}