diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:21:02 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:21:02 -0800 |
commit | 9842f1ca9d3de48d6bc990248be14b119dca9891 (patch) | |
tree | 3bf3f5405750fa8a27caaeed5155fd5b90665bd6 /src/arch/x86/isa/decoder | |
parent | b035c917a5e0749cb4068d2de66331beda52d222 (diff) | |
download | gem5-9842f1ca9d3de48d6bc990248be14b119dca9891.tar.xz |
X86: Implement CLTS.
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 f4a007282..c127ff458 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -264,7 +264,7 @@ #else 0x05: SyscallInst::syscall('xc->syscall(Rax)', IsSyscall); #endif - 0x06: clts(); + 0x06: Inst::CLTS(); 0x07: decode MODE_SUBMODE { 0x0: decode OPSIZE { // Return to 64 bit mode. |