mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
10 lines
201 B
C#
10 lines
201 B
C#
namespace Cosmos.Assembler.x86
|
|
{
|
|
[OpCode("mov")]
|
|
public class Mov : InstructionWithDestinationAndSourceAndSize
|
|
{
|
|
public Mov() : base("mov")
|
|
{
|
|
}
|
|
}
|
|
}
|