simple_mem.cc (10405:7a618c07e663) | simple_mem.cc (10466:73b7549d979e) |
---|---|
1/* 2 * Copyright (c) 2010-2013 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 --- 45 unchanged lines hidden (view full) --- 54 retryReq(false), retryResp(false), 55 releaseEvent(this), dequeueEvent(this), drainManager(NULL) 56{ 57} 58 59void 60SimpleMemory::init() 61{ | 1/* 2 * Copyright (c) 2010-2013 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 --- 45 unchanged lines hidden (view full) --- 54 retryReq(false), retryResp(false), 55 releaseEvent(this), dequeueEvent(this), drainManager(NULL) 56{ 57} 58 59void 60SimpleMemory::init() 61{ |
62 AbstractMemory::init(); 63 |
|
62 // allow unconnected memories as this is used in several ruby 63 // systems at the moment 64 if (port.isConnected()) { 65 port.sendRangeChange(); 66 } 67} 68 69Tick --- 222 unchanged lines hidden --- | 64 // allow unconnected memories as this is used in several ruby 65 // systems at the moment 66 if (port.isConnected()) { 67 port.sendRangeChange(); 68 } 69} 70 71Tick --- 222 unchanged lines hidden --- |