summaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorErik Hallnor <ehallnor@umich.edu>2004-02-29 16:18:49 -0500
committerErik Hallnor <ehallnor@umich.edu>2004-02-29 16:18:49 -0500
commitb491bda24145ffc9ce71a1d79b7b90926f910570 (patch)
treeba7def01371717ee6a8c3fef3c8d8031db9622d4 /dev
parent27960f6d858e92572d37604e92747d0b45591665 (diff)
downloadgem5-b491bda24145ffc9ce71a1d79b7b90926f910570.tar.xz
Add support for multiple address ranges in memory interfaces.
dev/alpha_console.cc: setAddrRange -> addAddrRange --HG-- extra : convert_revision : 9dc853b80bea443b54a130ca4c110a68077cb336
Diffstat (limited to 'dev')
-rw-r--r--dev/alpha_console.cc2
1 files changed, 1 insertions, 1 deletions
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];