using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.Assembler.x86 { /// /// Represents the LEA-instruction (load effective address, 0x8d) /// [Cosmos.Assembler.OpCode("lea")] public class Lea : InstructionWithDestinationAndSourceAndSize { public Lea() : base("lea") { } } }