diff options
author | Taeho Kgil <tkgil@umich.edu> | 2004-11-03 17:56:26 -0500 |
---|---|---|
committer | Taeho Kgil <tkgil@umich.edu> | 2004-11-03 17:56:26 -0500 |
commit | 129b885abd30e72c0b3e19787da385af4af6e53e (patch) | |
tree | c0f5ad10584f9b82401edf5abccb19b0f9e99ae2 /arch | |
parent | 78ae8764a9d876d377f3e35de7e412f154402580 (diff) | |
download | gem5-129b885abd30e72c0b3e19787da385af4af6e53e.tar.xz |
Add Inorder CPU model
SConscript:
arch/isa_parser.py:
cpu/static_inst.hh:
Add inorderCPU
--HG--
extra : convert_revision : 141372808fac5f6d125f9051ee0be982d21683aa
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/isa_parser.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/isa_parser.py b/arch/isa_parser.py index 011ce7623..c0b5131de 100755 --- a/arch/isa_parser.py +++ b/arch/isa_parser.py @@ -627,6 +627,9 @@ class CpuModel: # Define CPU models. The following lines should contain the only # CPU-model-specific information in this file. Note that the ISA # description itself should have *no* CPU-model-specific content. +CpuModel('InorderCPU', 'inorder_cpu_exec.cc', + '#include "cpu/inorder_cpu/inorder_cpu.hh"', + { 'CPU_exec_context': 'InorderCPU' }) CpuModel('SimpleCPU', 'simple_cpu_exec.cc', '#include "cpu/simple_cpu/simple_cpu.hh"', { 'CPU_exec_context': 'SimpleCPU' }) |