Add support for multiple address ranges in memory interfaces.
authorErik Hallnor <ehallnor@umich.edu>
Sun, 29 Feb 2004 21:18:49 +0000 (16:18 -0500)
committerErik Hallnor <ehallnor@umich.edu>
Sun, 29 Feb 2004 21:18:49 +0000 (16:18 -0500)
dev/alpha_console.cc:
    setAddrRange -> addAddrRange

--HG--
extra : convert_revision : 9dc853b80bea443b54a130ca4c110a68077cb336

dev/alpha_console.cc

index 85b4d57f285c7bed52824336ef1c829aa6d8123e..04046557a8cf9e852f52af2d045cc73d6d96f782 100644 (file)
@@ -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];