Deleted Added
sdiff udiff text old ( 12656:335489e574f3 ) new ( 12660:c5caca5f7d68 )
full compact
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

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

47#include "base/vnc/vncinput.hh"
48#include "dev/ps2/device.hh"
49
50struct PS2KeyboardParams;
51
52class PS2Keyboard : public PS2Device, VncKeyboard
53{
54 protected:
55 /** is the shift key currently down */
56 bool shiftDown;
57
58 /** Is the device enabled? */
59 bool enabled;
60
61 public:
62 PS2Keyboard(const PS2KeyboardParams *p);

--- 13 unchanged lines hidden ---