diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-18 22:42:53 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-18 22:42:53 -0700 |
commit | 5c32422162f11f11ac68cb5ba39bf5d48dce010d (patch) | |
tree | f60f7870d3fd21bebe021cea8f62293ffa1961bf /src/arch/x86/isa/decoder | |
parent | f0dce3bfce72a1a8514aa22e04ea6e06253a985f (diff) | |
download | gem5-5c32422162f11f11ac68cb5ba39bf5d48dce010d.tar.xz |
X86: Implement the string IO instructions, ins and outs.
--HG--
extra : convert_revision : b021e70390d289b22a8e693cd8a99d6e7bd7d2b4
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/one_byte_opcodes.isa | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index 473dd1eeb..9723b1d60 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -209,10 +209,10 @@ 0x1: IMUL(Gv,Ev,Iz); 0x2: PUSH(Ib); 0x3: IMUL(Gv,Ev,Ib); - 0x4: WarnUnimpl::ins_Yb_Dx(); - 0x5: WarnUnimpl::ins_Yz_Dx(); - 0x6: WarnUnimpl::outs_Dx_Xb(); - 0x7: WarnUnimpl::outs_Dx_Xz(); + 0x4: StringInst::INS(Yb,rD); + 0x5: StringInst::INS(Yz,rD); + 0x6: StringInst::OUTS(rD,Xb); + 0x7: StringInst::OUTS(rD,Xz); } 0x0E: decode OPCODE_OP_BOTTOM3 { 0x0: JO(Jb); |