diff options
author | Erik Hallnor <ehallnor@umich.edu> | 2004-02-29 16:18:49 -0500 |
---|---|---|
committer | Erik Hallnor <ehallnor@umich.edu> | 2004-02-29 16:18:49 -0500 |
commit | b491bda24145ffc9ce71a1d79b7b90926f910570 (patch) | |
tree | ba7def01371717ee6a8c3fef3c8d8031db9622d4 | |
parent | 27960f6d858e92572d37604e92747d0b45591665 (diff) | |
download | gem5-b491bda24145ffc9ce71a1d79b7b90926f910570.tar.xz |
Add support for multiple address ranges in memory interfaces.
dev/alpha_console.cc:
setAddrRange -> addAddrRange
--HG--
extra : convert_revision : 9dc853b80bea443b54a130ca4c110a68077cb336
-rw-r--r-- | dev/alpha_console.cc | 2 |
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]; |