mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 21:00:30 +00:00
21 lines
498 B
C#
21 lines
498 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 MovSS : Instruction
|
|
{
|
|
private string mDestination;
|
|
private string mSource;
|
|
public MovSS(string aDestination, string aSource) {
|
|
mDestination = aDestination;
|
|
mSource = aSource;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "movss " + mDestination + ", " + mSource;
|
|
}
|
|
}
|
|
}
|