summaryrefslogtreecommitdiff
path: root/sim/system.hh
diff options
context:
space:
mode:
authorAndrew Schultz <alschult@umich.edu>2003-10-22 18:50:54 -0400
committerAndrew Schultz <alschult@umich.edu>2003-10-22 18:50:54 -0400
commit98fd66ed0c2596644bb3c6a58f924f0a8756a048 (patch)
tree3ea37dd1ec7881841899a67db542b6d75fb59c94 /sim/system.hh
parent35a0764307c0537d514f3ee2ef34e6df79c1a76d (diff)
downloadgem5-98fd66ed0c2596644bb3c6a58f924f0a8756a048.tar.xz
Changed the init_param to a uint64_t from int
--HG-- extra : convert_revision : fbd3d3bbaa539661f63e4f7991b0a6275992d60a
Diffstat (limited to 'sim/system.hh')
-rw-r--r--sim/system.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/system.hh b/sim/system.hh
index 56a3d6a6f..f10b70a4e 100644
--- a/sim/system.hh
+++ b/sim/system.hh
@@ -46,7 +46,7 @@ class ExecContext;
class System : public SimObject
{
public:
- const int init_param;
+ const uint64_t init_param;
MemoryController *memCtrl;
PhysicalMemory *physmem;
@@ -56,7 +56,7 @@ class System : public SimObject
void registerExecContext(ExecContext *xc);
public:
- System(const std::string _name, const int _init_param,
+ System(const std::string _name, const uint64_t _init_param,
MemoryController *, PhysicalMemory *);
~System();