mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 12:50:19 +00:00
21 lines
500 B
C#
21 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86.SSE {
|
|
[OpCode(0xFFFFFFFF, "movss")]
|
|
public class MoveSS : Instruction
|
|
{
|
|
private string mDestination;
|
|
private string mSource;
|
|
public MoveSS(string aDestination, string aSource) {
|
|
mDestination = aDestination;
|
|
mSource = aSource;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "movss " + mDestination + ", " + mSource;
|
|
}
|
|
}
|
|
}
|