diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-12-01 23:06:03 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-12-01 23:06:03 -0800 |
commit | 988c6f227afbd2048df2eeae55aed29a1addcab7 (patch) | |
tree | 191324aa2a2ab1855a4f731a39889bc9f9929ad7 /src/arch/x86/isa/decoder | |
parent | fe833dd2c33818a1f92f87ea26b17e6b85d3976e (diff) | |
download | gem5-988c6f227afbd2048df2eeae55aed29a1addcab7.tar.xz |
X86: Implement mov from control register.
--HG--
extra : convert_revision : c8280f0686a3ae6d5c405327540ad15a3a5531f9
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 717a8f26f..b50c42cd9 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -216,7 +216,7 @@ 0x04: decode LEGACY_DECODEVAL { // no prefix 0x0: decode OPCODE_OP_BOTTOM3 { - 0x0: mov_Rd_Cd(); + 0x0: Inst::MOV(Rd,Cd); 0x1: mov_Rd_Dd(); 0x2: Inst::MOV(Cd,Rd); 0x3: mov_Dd_Rd(); |