From b491bda24145ffc9ce71a1d79b7b90926f910570 Mon Sep 17 00:00:00 2001 From: Erik Hallnor Date: Sun, 29 Feb 2004 16:18:49 -0500 Subject: [PATCH] Add support for multiple address ranges in memory interfaces. dev/alpha_console.cc: setAddrRange -> addAddrRange --HG-- extra : convert_revision : 9dc853b80bea443b54a130ca4c110a68077cb336 --- dev/alpha_console.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/alpha_console.cc b/dev/alpha_console.cc index 85b4d57f28..04046557a8 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];