diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-06-04 18:41:44 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-06-04 18:41:44 -0400 |
commit | 673bd49b1dbbb9fee1bfcd9ba98351ef8b89a101 (patch) | |
tree | d2111680f2049e83726f5be09940dd6f1658700c /arch | |
parent | 609cacc3da432ca25d19e5a41ea11dc7e0f4b2f7 (diff) | |
download | gem5-673bd49b1dbbb9fee1bfcd9ba98351ef8b89a101.tar.xz |
Remove the inorder CPU
--HG--
extra : convert_revision : 626aad449df9370383becb8e14f4cbf406b5b376
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/isa_parser.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/isa_parser.py b/arch/isa_parser.py index 8187cf188..0d1320ccc 100755 --- a/arch/isa_parser.py +++ b/arch/isa_parser.py @@ -627,9 +627,6 @@ 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' }) |