intdev.hh (9807:63d7362bbdf2) | intdev.hh (10405:7a618c07e663) |
---|---|
1/* 2 * Copyright (c) 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 --- 68 unchanged lines hidden (view full) --- 77 AddrRangeList getAddrRanges() const 78 { 79 return device->getIntAddrRange(); 80 } 81 82 Tick recvMessage(PacketPtr pkt) 83 { 84 // @todo someone should pay for this | 1/* 2 * Copyright (c) 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 --- 68 unchanged lines hidden (view full) --- 77 AddrRangeList getAddrRanges() const 78 { 79 return device->getIntAddrRange(); 80 } 81 82 Tick recvMessage(PacketPtr pkt) 83 { 84 // @todo someone should pay for this |
85 pkt->busFirstWordDelay = pkt->busLastWordDelay = 0; | 85 pkt->firstWordDelay = pkt->lastWordDelay = 0; |
86 return device->recvMessage(pkt); 87 } 88 }; 89 90 class IntMasterPort : public MessageMasterPort 91 { 92 IntDevice* device; 93 Tick latency; --- 156 unchanged lines hidden --- | 86 return device->recvMessage(pkt); 87 } 88 }; 89 90 class IntMasterPort : public MessageMasterPort 91 { 92 IntDevice* device; 93 Tick latency; --- 156 unchanged lines hidden --- |