Deleted Added
sdiff udiff text old ( 13799:15badf7874ee ) new ( 13892:0182a0601f66 )
full compact
1/*
2 * Copyright (c) 2012-2014 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

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

55 * presentation of the MasterPort which can be bound.
56 *
57 * The external port must provide a gem5 MasterPort interface.
58 */
59
60#ifndef __MEM_EXTERNAL_MASTER_HH__
61#define __MEM_EXTERNAL_MASTER_HH__
62
63#include "mem/port.hh"
64#include "params/ExternalMaster.hh"
65#include "sim/sim_object.hh"
66
67class ExternalMaster : public SimObject
68{
69 public:
70 /** Derive from this class to create an external port interface */
71 class ExternalPort : public MasterPort
72 {
73 protected:
74 ExternalMaster &owner;
75

--- 64 unchanged lines hidden ---