Deleted Added
sdiff udiff text old ( 13892:0182a0601f66 ) new ( 14218:c83b2bdfc7ee )
full compact
1/*
2 * Copyright (c) 2012, 2015 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

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

42 */
43
44#include "dev/io_device.hh"
45
46#include "base/trace.hh"
47#include "debug/AddrRanges.hh"
48#include "sim/system.hh"
49
50PioDevice::PioDevice(const Params *p)
51 : ClockedObject(p), sys(p->system), pioPort(this)
52{}
53
54PioDevice::~PioDevice()
55{
56}
57

--- 31 unchanged lines hidden ---