diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-02-26 23:39:22 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-02-26 23:39:22 -0500 |
commit | 98d2ca403e859f289e6d637a2179e62728370d5f (patch) | |
tree | 58568c14f16d6cdfff6dbdd728c637314f895e9b /src/arch/x86/isa/decoder | |
parent | 8b4796a367ec21d294f7318343e5bb9d7e07a53e (diff) | |
download | gem5-98d2ca403e859f289e6d637a2179e62728370d5f.tar.xz |
X86: Implement the INVLPG instruction and the TIA microop.
--HG--
extra : convert_revision : 31db1ee082f6c3ca5443cba1eb335e408661ead2
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 d90df6f45..8135a1fdb 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -157,7 +157,7 @@ } 0x4: smsw_Mw(); 0x6: lmsw_Mw(); - 0x7: invlpg_M(); + 0x7: Inst::INVLPG(M); default: Inst::UD2(); } } |