diff -r 7024cff42112 -r 5afd0f5c1ed4 src/dev/io_device.cc --- a/src/dev/io_device.cc Sat Oct 02 21:13:41 2010 -0500 +++ b/src/dev/io_device.cc Sat Oct 02 21:13:47 2010 -0500 @@ -51,6 +51,8 @@ { snoop = false; device->addressRanges(resp); + for (AddrRangeIter i = resp.begin(); i != resp.end(); i++) + DPRINTF(BusAddrRanges, "Adding Range %#x-%#x\n", i->start, i->end); } @@ -95,6 +97,7 @@ { assert(pioSize != 0); range_list.clear(); + DPRINTF(BusAddrRanges, "registering range: %#x-%#x\n", pioAddr, pioSize); range_list.push_back(RangeSize(pioAddr, pioSize)); }