From: Erik Hallnor Date: Sun, 29 Feb 2004 21:18:49 +0000 (-0500) Subject: Add support for multiple address ranges in memory interfaces. X-Git-Tag: m5_1.0_beta2~116 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b491bda24145ffc9ce71a1d79b7b90926f910570;p=gem5.git Add support for multiple address ranges in memory interfaces. dev/alpha_console.cc: setAddrRange -> addAddrRange --HG-- extra : convert_revision : 9dc853b80bea443b54a130ca4c110a68077cb336 --- diff --git a/dev/alpha_console.cc b/dev/alpha_console.cc index 85b4d57f2..04046557a 100644 --- a/dev/alpha_console.cc +++ b/dev/alpha_console.cc @@ -63,7 +63,7 @@ AlphaConsole::AlphaConsole(const string &name, SimConsole *cons, SimpleDisk *d, if (bus) { pioInterface = newPioInterface(name, hier, bus, this, &AlphaConsole::cacheAccess); - pioInterface->setAddrRange(addr, addr + size); + pioInterface->addAddrRange(addr, addr + size); } consoleData = new uint8_t[size];