diff options
author | Erik Hallnor <ehallnor@umich.edu> | 2004-01-13 02:10:35 -0500 |
---|---|---|
committer | Erik Hallnor <ehallnor@umich.edu> | 2004-01-13 02:10:35 -0500 |
commit | 413bfc68e6357d6561985300c61932abfd5c98b8 (patch) | |
tree | 12bc2033611f9802a3b5e6abf80ad60bdcb63f16 /arch/alpha/isa_traits.hh | |
parent | 54b6d8c5a8a4abd47536bf50c6f04c5535036752 (diff) | |
download | gem5-413bfc68e6357d6561985300c61932abfd5c98b8.tar.xz |
Change to a new centralized way to specify the memory hierarchy parameters (do_data and do_events). If you use the defaults (false and true respectively) you don't have to change your INI files.
arch/alpha/isa_traits.hh:
Add a constant for the maximum address value called MaxAddr.
--HG--
extra : convert_revision : 1371e8b713cc6ed134093e9c208db35dc9741ac7
Diffstat (limited to 'arch/alpha/isa_traits.hh')
-rw-r--r-- | arch/alpha/isa_traits.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/alpha/isa_traits.hh b/arch/alpha/isa_traits.hh index ecca91d43..05ab89978 100644 --- a/arch/alpha/isa_traits.hh +++ b/arch/alpha/isa_traits.hh @@ -264,6 +264,7 @@ const int ReturnValueReg = TheISA::ReturnValueReg; const int ArgumentReg0 = TheISA::ArgumentReg0; const int ArgumentReg1 = TheISA::ArgumentReg1; const int BranchPredAddrShiftAmt = TheISA::BranchPredAddrShiftAmt; +const int MaxAddr = (Addr)-1; #ifdef FULL_SYSTEM typedef TheISA::InternalProcReg InternalProcReg; |