summaryrefslogtreecommitdiff
path: root/arch/isa_parser.py
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2004-05-28 14:42:59 -0400
committerKevin Lim <ktlim@umich.edu>2004-05-28 14:42:59 -0400
commit6964ecd1cf14f294a300e91bc5b65042d03952d4 (patch)
tree294cda7746b1fc636a00c2a377d41a95e67a62a3 /arch/isa_parser.py
parent67b5f6afc10a87a5942d24ad503f3e6b9358580c (diff)
downloadgem5-6964ecd1cf14f294a300e91bc5b65042d03952d4.tar.xz
Updated FastCPU model with all the recent changes.
arch/alpha/ev5.cc: Updated to support new forms of setIntReg and setFloatRegDouble. Will need to be cleaned up in the future. arch/isa_parser.py: Added in FastCPU model. --HG-- extra : convert_revision : 384a27efcb50729ea6c3cc11653f395c300e48db
Diffstat (limited to 'arch/isa_parser.py')
-rwxr-xr-xarch/isa_parser.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/isa_parser.py b/arch/isa_parser.py
index 7f77241be..c808c2565 100755
--- a/arch/isa_parser.py
+++ b/arch/isa_parser.py
@@ -630,6 +630,9 @@ class CpuModel:
CpuModel('SimpleCPU', 'simple_cpu_exec.cc',
'#include "cpu/simple_cpu/simple_cpu.hh"',
{ 'CPU_exec_context': 'SimpleCPU' })
+CpuModel('FastCPU', 'fast_cpu_exec.cc',
+ '#include "cpu/fast_cpu/fast_cpu.hh"',
+ { 'CPU_exec_context': 'FastCPU' })
CpuModel('FullCPU', 'full_cpu_exec.cc',
'#include "cpu/full_cpu/dyn_inst.hh"',
{ 'CPU_exec_context': 'DynInst' })