diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-20 20:17:01 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-20 20:17:01 -0400 |
commit | e0b065ff7c10dada97f562f13d7676253d48e793 (patch) | |
tree | 12073294304144f42691b067f8c2b57ae85b927c /sim/prog.cc | |
parent | 4963dbf9a95fda3f6ee0bc6b37bbe67396395b8c (diff) | |
download | gem5-e0b065ff7c10dada97f562f13d7676253d48e793.tar.xz |
Separate the stuff for SimObject from SimObject builder.
This makes testing a bit easier.
arch/alpha/alpha_memory.cc:
cpu/intr_control.cc:
cpu/memtest/memtest.cc:
cpu/simple_cpu/simple_cpu.cc:
dev/alpha_console.cc:
dev/console.cc:
dev/disk_image.cc:
dev/etherbus.cc:
dev/etherdump.cc:
dev/etherlink.cc:
dev/ethertap.cc:
dev/simple_disk.cc:
kern/tru64/tru64_system.cc:
sim/main.cc:
sim/prog.cc:
Need to include builder.hh
sort #includes
sim/sim_object.cc:
sim/sim_object.hh:
Separate the SimObjectBuilder stuff into its own file
--HG--
extra : convert_revision : e8395e0cc6ae1f180f9cd6f100795a1ac44aeed5
Diffstat (limited to 'sim/prog.cc')
-rw-r--r-- | sim/prog.cc | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sim/prog.cc b/sim/prog.cc index c52d51f63..275e1551b 100644 --- a/sim/prog.cc +++ b/sim/prog.cc @@ -28,22 +28,21 @@ #include <unistd.h> #include <fcntl.h> -#include <stdio.h> +#include <cstdio> #include <string> -#include "mem/functional_mem/main_memory.hh" -#include "sim/prog.hh" - -#include "eio/eio.hh" #include "base/intmath.hh" -#include "cpu/full_cpu/thread.hh" -#include "sim/fake_syscall.hh" #include "base/loader/object_file.hh" +#include "base/statistics.hh" #include "cpu/exec_context.hh" #include "cpu/full_cpu/smt.hh" - -#include "base/statistics.hh" +#include "cpu/full_cpu/thread.hh" +#include "eio/eio.hh" +#include "mem/functional_mem/main_memory.hh" +#include "sim/builder.hh" +#include "sim/fake_syscall.hh" +#include "sim/prog.hh" #include "sim/sim_stats.hh" using namespace std; |