system.cc (9293:df7c3f99ebca) system.cc (9294:8fb03b13de02)
1/*
2 * Copyright (c) 2011-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

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

166void
167System::init()
168{
169 // check that the system port is connected
170 if (!_systemPort.isConnected())
171 panic("System port on %s is not connected.\n", name());
172}
173
1/*
2 * Copyright (c) 2011-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

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

166void
167System::init()
168{
169 // check that the system port is connected
170 if (!_systemPort.isConnected())
171 panic("System port on %s is not connected.\n", name());
172}
173
174MasterPort&
175System::getMasterPort(const std::string &if_name, int idx)
174BaseMasterPort&
175System::getMasterPort(const std::string &if_name, PortID idx)
176{
177 // no need to distinguish at the moment (besides checking)
178 return _systemPort;
179}
180
181void
182System::setMemoryMode(Enums::MemoryMode mode)
183{

--- 274 unchanged lines hidden ---
176{
177 // no need to distinguish at the moment (besides checking)
178 return _systemPort;
179}
180
181void
182System::setMemoryMode(Enums::MemoryMode mode)
183{

--- 274 unchanged lines hidden ---