From: Gabe Black Date: Fri, 10 Mar 2006 23:26:12 +0000 (-0500) Subject: Moved MaxAddr. X-Git-Tag: m5_2.0_beta1~193 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3651fde0b2c8a12a26cfb5b22b1944a47d59f4d;p=gem5.git Moved MaxAddr. sim/host.hh: Moved MaxAddr from arch to here, since it depends only on the Addr type. --HG-- extra : convert_revision : e5eaa0bfbe2a376b0d309c517687b3d9d63e407f --- diff --git a/sim/host.hh b/sim/host.hh index f7e64f23c..48c977331 100644 --- a/sim/host.hh +++ b/sim/host.hh @@ -62,4 +62,6 @@ typedef int64_t Tick; */ typedef uint64_t Addr; +const Addr MaxAddr = (Addr)-1; + #endif // __HOST_H__