diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:21:27 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:21:27 -0800 |
commit | 7aa875f4f3598c8ca6e3ba8946cf6eb3697a7696 (patch) | |
tree | be4d79641e40f9840674a495454796b604443347 /src/arch/x86/isa/decoder | |
parent | bda7077c6408542f0a1d766019b91a0c8eb2147b (diff) | |
download | gem5-7aa875f4f3598c8ca6e3ba8946cf6eb3697a7696.tar.xz |
X86: Implement the lldt instruction.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa index c127ff458..9c376e2c4 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -93,7 +93,7 @@ 0x00: decode MODRM_REG { 0x0: sldt_Mw_or_Rv(); 0x1: str_Mw_or_Rv(); - 0x2: lldt_Mw_or_Rv(); + 0x2: Inst::LLDT(Ew); 0x3: Inst::LTR(Ew); 0x4: verr_Mw_or_Rv(); 0x5: verw_Mw_or_Rv(); |