diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-09-04 23:38:34 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-09-04 23:38:34 -0700 |
commit | 760240176a8ef3198daa728f0080e41de4d9430a (patch) | |
tree | 56e6bede07d8cf6e59170cf61793c00d22a23d94 /src/arch/x86 | |
parent | d2fc4ee6258af274131e00d98ec44d199601596f (diff) | |
download | gem5-760240176a8ef3198daa728f0080e41de4d9430a.tar.xz |
X86: Hook in the fp arithmetic instructions. Stale python made it work before.
--HG--
extra : convert_revision : af27f26ae810ebaae13faa572c5b4eb074620d91
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/isa/insts/sse/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/x86/isa/insts/sse/__init__.py b/src/arch/x86/isa/insts/sse/__init__.py index 0377c3171..2d79b7cdf 100644 --- a/src/arch/x86/isa/insts/sse/__init__.py +++ b/src/arch/x86/isa/insts/sse/__init__.py @@ -54,7 +54,9 @@ # Authors: Gabe Black categories = ["move", - "convert"] + "convert", + "add_and_subtract", + "multiply_and_divide"] microcode = ''' # SSE instructions |