Cosmos/source/Indy.IL2CPU.Assembler.X86/RepeatMovsb.cs
2008-05-13 14:27:29 +00:00

17 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode(0xFFFFFFFF, "rep movsb")]
public class RepeatMovsb: Instruction {
//public readonly string Destination;
public RepeatMovsb() {
// Destination = aDestination;
}
//public override string ToString() {
// return "rep stos " + Destinati;
//}
}
}