using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.Assembler.x86 { /// /// Represents the RDTSC-instruction (read timestamp counter, 0x0f 0x31) /// [Cosmos.Assembler.OpCode("rdtsc")] public class Rdtsc : InstructionWithDestinationAndSourceAndSize { public Rdtsc() : base("rdtsc") { } } }