device.cc (12656:335489e574f3) device.cc (12660:c5caca5f7d68)
1/*
2 * Copyright (c) 2017-2018 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

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

40 * Authors: Gabe Black
41 * Andreas Sandberg
42 */
43
44#include "dev/ps2/device.hh"
45
46#include "base/logging.hh"
47#include "debug/PS2.hh"
1/*
2 * Copyright (c) 2017-2018 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

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

40 * Authors: Gabe Black
41 * Andreas Sandberg
42 */
43
44#include "dev/ps2/device.hh"
45
46#include "base/logging.hh"
47#include "debug/PS2.hh"
48#include "dev/ps2.hh"
48#include "dev/ps2/types.hh"
49#include "params/PS2Device.hh"
50
51PS2Device::PS2Device(const PS2DeviceParams *p)
52 : SimObject(p)
53{
54 inBuffer.reserve(16);
55}
56

--- 68 unchanged lines hidden ---
49#include "params/PS2Device.hh"
50
51PS2Device::PS2Device(const PS2DeviceParams *p)
52 : SimObject(p)
53{
54 inBuffer.reserve(16);
55}
56

--- 68 unchanged lines hidden ---