X86: Set up a named constant for the "fold bit" for int register indices.
[gem5.git] / src / cpu / cpu_models.py
index 5b0c6c4dac12140effd383fecba23ab830f7bb46..793f8c6460a3df4df55f2fec3d2fe4dcf9cc50e4 100644 (file)
@@ -82,3 +82,6 @@ CpuModel('CheckerCPU', 'checker_cpu_exec.cc',
 CpuModel('O3CPU', 'o3_cpu_exec.cc',
          '#include "cpu/o3/isa_specific.hh"',
          { 'CPU_exec_context': 'O3DynInst' })
+CpuModel('InOrderCPU', 'inorder_cpu_exec.cc',
+         '#include "cpu/inorder/inorder_dyn_inst.hh"',
+         { 'CPU_exec_context': 'InOrderDynInst' })