diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:02:30 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:02:30 -0700 |
commit | fea7165b55f7eca4b1a549628029b06c5d19aa1c (patch) | |
tree | 6aa141772eba57662aa1d65e3cb529b1f2437f98 /src/arch/x86/isa/decoder | |
parent | 2dd65dc2546216ef132e30f5c590e11e35b4ff37 (diff) | |
download | gem5-fea7165b55f7eca4b1a549628029b06c5d19aa1c.tar.xz |
X86: Implement STOS.
--HG--
extra : convert_revision : 95f3bf185f07fe644d6ab96bbb6e598e406b92f4
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/one_byte_opcodes.isa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index ecb92947f..3e8b893bf 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -338,8 +338,8 @@ 0x15: decode OPCODE_OP_BOTTOM3 { 0x0: Inst::TEST(rAb,Ib); 0x1: Inst::TEST(rAv,Iz); - 0x2: stos_Yb_Al(); - 0x3: stos_Yv_rAX(); + 0x2: StringInst::STOS(Yb); + 0x3: StringInst::STOS(Yv); 0x4: lods_Al_Xb(); 0x5: lods_rAX_Xv(); 0x6: StringInst::SCAS(Yb); |