summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-06-20 19:04:41 +0000
committerGabe Black <gblack@eecs.umich.edu>2007-06-20 19:04:41 +0000
commit6c4b3db04ce0999601bf834ea3227b8fd07d7bdd (patch)
tree4cca18d0da429c529caab34bf14a9ad866b011c8 /src
parente6328170e17fd98cce34d5d5675097aec7f73b88 (diff)
downloadgem5-6c4b3db04ce0999601bf834ea3227b8fd07d7bdd.tar.xz
Fix a typo in one of the operand type tags.
--HG-- extra : convert_revision : bea87214ba4b40d75a350b803154836ec6d0ae9e
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/isa/decoder/one_byte_opcodes.isa2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
index 3b4e72347..484f8160d 100644
--- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
@@ -315,7 +315,7 @@
0x0: Inst::MOV(Eb,Gb);
0x1: Inst::MOV(Ev,Gv);
0x2: Inst::MOV(Gb,Eb);
- 0x3: Inst::MOV(Gv,Eb);
+ 0x3: Inst::MOV(Gv,Ev);
0x4: mov_MwRv_Sw(); //What to do with this one?
0x5: Inst::LEA(Gv,M);
0x6: mov_Sw_MwRv();