diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2004-04-06 10:02:00 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2004-04-06 10:02:00 -0700 |
commit | d4069233eb8cc875aa443cb7c6a16b748e3acc42 (patch) | |
tree | 1c492289fff76c43a00aea660889eecd040b95bd /arch | |
parent | 82837b1c3690084ce3cd6ae2f6a1700caf23be00 (diff) | |
download | gem5-d4069233eb8cc875aa443cb7c6a16b748e3acc42.tar.xz |
Beta version of Python configuration tool. Generates .ini files from
Python script description.
arch/alpha/alpha_memory.cc:
dev/io_device.cc:
Add DEFINE_SIM_OBJECT_CLASS_NAME for intermediate SimObjects.
test/paramtest.cc:
Fix stupid spelling.
--HG--
extra : convert_revision : dc020208cb6507c1afb1ed771a7218daba678e09
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/alpha_memory.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/alpha/alpha_memory.cc b/arch/alpha/alpha_memory.cc index dea25a440..1608cc4a4 100644 --- a/arch/alpha/alpha_memory.cc +++ b/arch/alpha/alpha_memory.cc @@ -563,6 +563,8 @@ AlphaTLB::index(bool advance) return *pte; } +DEFINE_SIM_OBJECT_CLASS_NAME("AlphaTLB", AlphaTLB) + BEGIN_DECLARE_SIM_OBJECT_PARAMS(AlphaITB) Param<int> size; |