Cosmos/source/Indy.IL2CPU/Assembler/x86/Movs.cs
mterwoord_cp 8bc3218582
2008-12-21 14:16:59 +00:00

19 lines
No EOL
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode("movs")]
public class Movs: Instruction, IInstructionWithSize, IInstructionWithPrefix {
public InstructionPrefixes Prefixes {
get;
set;
}
public byte Size {
get;
set;
}
}
}