external_master.hh (13799:15badf7874ee) external_master.hh (13892:0182a0601f66)
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
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/mem_object.hh"
63#include "mem/port.hh"
64#include "params/ExternalMaster.hh"
64#include "params/ExternalMaster.hh"
65#include "sim/sim_object.hh"
65
66
66class ExternalMaster : public MemObject
67class ExternalMaster : public SimObject
67{
68 public:
69 /** Derive from this class to create an external port interface */
70 class ExternalPort : public MasterPort
71 {
72 protected:
73 ExternalMaster &owner;
74

--- 64 unchanged lines hidden ---
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 ---