diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:04:20 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:04:20 -0700 |
commit | 65c247f21fba8e2a8349d6fdba8ff4661a5d2d89 (patch) | |
tree | 2bac67da1fd23c2033ff70336e75a1fc28b2113c /src/arch/x86/isa/insts | |
parent | 7d78f1b41c0cef781bb370e2c9bd1457b8e6a341 (diff) | |
download | gem5-65c247f21fba8e2a8349d6fdba8ff4661a5d2d89.tar.xz |
X86: Add classes for the actual x86 faults.
--HG--
extra : convert_revision : bc060a01b5415551b335ca68ccbf126333ae20b0
Diffstat (limited to 'src/arch/x86/isa/insts')
-rw-r--r-- | src/arch/x86/isa/insts/system/undefined_operation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/insts/system/undefined_operation.py b/src/arch/x86/isa/insts/system/undefined_operation.py index e5544b6e7..9f129522b 100644 --- a/src/arch/x86/isa/insts/system/undefined_operation.py +++ b/src/arch/x86/isa/insts/system/undefined_operation.py @@ -56,6 +56,6 @@ microcode = ''' def macroop UD2 { - fault "new X86Fault" + fault "new InvalidOpcode()" }; ''' |