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

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

46
47#include "dev/ps2/device.hh"
48
49struct PS2MouseParams;
50
51class PS2Mouse : public PS2Device
52{
53 protected:
54 BitUnion8(Status)
55 Bitfield<6> remote;
56 Bitfield<5> enabled;
57 Bitfield<4> twoToOne;
58 Bitfield<2> leftButton;
59 Bitfield<0> rightButton;
60 EndBitUnion(Status)
61

--- 16 unchanged lines hidden ---