Changed the init_param to a uint64_t from int
--HG-- extra : convert_revision : fbd3d3bbaa539661f63e4f7991b0a6275992d60a
This commit is contained in:
parent
35a0764307
commit
98fd66ed0c
4 changed files with 6 additions and 6 deletions
|
@ -43,7 +43,7 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
Tru64System::Tru64System(const string _name, const int _init_param,
|
||||
Tru64System::Tru64System(const string _name, const uint64_t _init_param,
|
||||
MemoryController *_memCtrl, PhysicalMemory *_physmem,
|
||||
const string &kernel_path, const string &console_path,
|
||||
const string &palcode, const string &boot_osflags)
|
||||
|
@ -208,7 +208,7 @@ BEGIN_DECLARE_SIM_OBJECT_PARAMS(Tru64System)
|
|||
|
||||
SimObjectParam<MemoryController *> mem_ctl;
|
||||
SimObjectParam<PhysicalMemory *> physmem;
|
||||
Param<int> init_param;
|
||||
Param<uint64_t> init_param;
|
||||
|
||||
Param<string> kernel_code;
|
||||
Param<string> console_code;
|
||||
|
|
|
@ -79,7 +79,7 @@ class Tru64System : public System
|
|||
|
||||
public:
|
||||
Tru64System(const std::string _name,
|
||||
const int _init_param,
|
||||
const uint64_t _init_param,
|
||||
MemoryController *_memCtrl,
|
||||
PhysicalMemory *_physmem,
|
||||
const std::string &kernel_path,
|
||||
|
|
|
@ -38,7 +38,7 @@ vector<System *> System::systemList;
|
|||
int System::numSystemsRunning = 0;
|
||||
|
||||
System::System(const std::string _name,
|
||||
const int _init_param,
|
||||
const uint64_t _init_param,
|
||||
MemoryController *_memCtrl,
|
||||
PhysicalMemory *_physmem)
|
||||
: SimObject(_name),
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue