diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-16 10:30:33 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-16 10:30:33 -0500 |
commit | df012f26fa9797896e3f571c81d336bec0a97b98 (patch) | |
tree | 8fd88577c6c3542256f8d8ab4d28075892a6f594 /sim/process.cc | |
parent | aa8c9db159422a313f6dfc9a76fd827515b32126 (diff) | |
download | gem5-df012f26fa9797896e3f571c81d336bec0a97b98.tar.xz |
Fix the bad addr check to check for allowable addresses in the nxm address space
arch/alpha/alpha_tru64_process.cc:
sim/process.cc:
sim/process.hh:
Add an address range for the nxm
sim/syscall_emul.hh:
Check to make sure that if we have an nxm config space that the mmap hasn't grown into it
--HG--
extra : convert_revision : e479e5240080ae488080d228bafea488835d6e77
Diffstat (limited to 'sim/process.cc')
-rw-r--r-- | sim/process.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/process.cc b/sim/process.cc index 7111e8733..c18b31da7 100644 --- a/sim/process.cc +++ b/sim/process.cc @@ -89,6 +89,7 @@ Process::Process(const string &nm, } mmap_start = mmap_end = 0; + nxm_start = nxm_end = 0; // other parameters will be initialized when the program is loaded } |