Cosmos/source/Cosmos.Assembler/x86/Lea.cs
Unknown6656 1fd7a0367c Added ASM instructions and basic DateTime-implementation
Added the x86-instructions 'LEA', 'RDTSC' and 'RDMSR'.
Added a simplistic plug for 'system::datetime', which now contains the
method for fetching the current date/time
2016-08-14 06:06:30 +02:00

19 lines
410 B
C#

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