diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-20 00:42:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-20 00:42:14 -0700 |
commit | e8c0ca5cd15be99ea8b56ac64824fce50e76d577 (patch) | |
tree | 2ceb54ada8edb4ce73a386f57783348e3e3d6746 /src/arch/x86/isa/decoder | |
parent | 843d06466892d1dcce79e7fcdcdbb5d50b40b922 (diff) | |
download | gem5-e8c0ca5cd15be99ea8b56ac64824fce50e76d577.tar.xz |
X86: Fix the decoding for and fill out FST and FSTP.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/x87.isa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/isa/decoder/x87.isa b/src/arch/x86/isa/decoder/x87.isa index 9a6473141..cfd69b3ba 100644 --- a/src/arch/x86/isa/decoder/x87.isa +++ b/src/arch/x86/isa/decoder/x87.isa @@ -249,8 +249,8 @@ format WarnUnimpl { 0x3: Inst::UD2(); default: fisttp(); } - 0x2: Inst::FST(Mq); - 0x3: Inst::FSTP(Mq); + 0x2: Inst::FST(Eq); + 0x3: Inst::FSTP(Eq); 0x4: decode MODRM_MOD { 0x3: fucom(); default: frstor(); |