Cosmos/source/Indy.IL2CPU.Assembler.X86.Native/Lidt.cs
mterwoord_cp e7ffcc64f2
2007-11-22 19:08:49 +00:00

18 lines
No EOL
390 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86.Native {
[OpCode(0xFFFFFFFF, "lidt")]
public class Lidt: X86.Instruction {
public readonly string Operand;
public Lidt(string aOperand) {
Operand = aOperand;
}
public override string ToString() {
return "lidt " + Operand;
}
}
}