simple_mem.cc (9228:bbdca4088834) simple_mem.cc (9294:8fb03b13de02)
1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 151 unchanged lines hidden (view full) ---

160 assert(isBusy);
161 isBusy = false;
162 if (retryReq) {
163 retryReq = false;
164 port.sendRetry();
165 }
166}
167
1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 151 unchanged lines hidden (view full) ---

160 assert(isBusy);
161 isBusy = false;
162 if (retryReq) {
163 retryReq = false;
164 port.sendRetry();
165 }
166}
167
168SlavePort &
169SimpleMemory::getSlavePort(const std::string &if_name, int idx)
168BaseSlavePort &
169SimpleMemory::getSlavePort(const std::string &if_name, PortID idx)
170{
171 if (if_name != "port") {
172 return MemObject::getSlavePort(if_name, idx);
173 } else {
174 return port;
175 }
176}
177

--- 58 unchanged lines hidden ---
170{
171 if (if_name != "port") {
172 return MemObject::getSlavePort(if_name, idx);
173 } else {
174 return port;
175 }
176}
177

--- 58 unchanged lines hidden ---