diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-03-04 03:19:58 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-03-04 03:19:58 -0500 |
commit | 1e3b221fe38a09d477f306ac837e9f816bcea029 (patch) | |
tree | c093f375a5a0a177e74c2fe92a60f6c5a087602c /kern/tru64/tru64_system.cc | |
parent | 62d149d9be9627593dc3e89505daa20b349ec116 (diff) | |
parent | 9ad917858763bb44c8e6e22b7bb370fd50d518df (diff) | |
download | gem5-1e3b221fe38a09d477f306ac837e9f816bcea029.tar.xz |
Merge gblack@m5.eecs.umich.edu:/bk/multiarch
into ewok.(none):/home/gblack/m5/multiarch
--HG--
extra : convert_revision : cb6de8d050ac5abb8f61eb5780deeb06e93b1a0c
Diffstat (limited to 'kern/tru64/tru64_system.cc')
-rw-r--r-- | kern/tru64/tru64_system.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/tru64/tru64_system.cc b/kern/tru64/tru64_system.cc index 48e02d90b..aa78e8de6 100644 --- a/kern/tru64/tru64_system.cc +++ b/kern/tru64/tru64_system.cc @@ -42,7 +42,7 @@ using namespace std; Tru64System::Tru64System(Tru64System::Params *p) - : System(p) + : AlphaSystem(p) { Addr addr = 0; if (kernelSymtab->findAddress("enable_async_printf", addr)) { @@ -136,7 +136,7 @@ END_INIT_SIM_OBJECT_PARAMS(Tru64System) CREATE_SIM_OBJECT(Tru64System) { - System::Params *p = new System::Params; + AlphaSystem::Params *p = new AlphaSystem::Params; p->name = getInstanceName(); p->boot_cpu_frequency = boot_cpu_frequency; p->memctrl = memctrl; |