PS2.py (12654:749de33b7af6) PS2.py (12655:a1646f7c13ab)
1# Copyright (c) 2017-2018 ARM Limited
2# All rights reserved
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

48 type = 'PS2Keyboard'
49 cxx_header = "dev/ps2/keyboard.hh"
50
51 vnc = Param.VncInput(Parent.any, "VNC server providing keyboard input")
52
53class PS2Mouse(PS2Device):
54 type = 'PS2Mouse'
55 cxx_header = "dev/ps2/mouse.hh"
1# Copyright (c) 2017-2018 ARM Limited
2# All rights reserved
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

48 type = 'PS2Keyboard'
49 cxx_header = "dev/ps2/keyboard.hh"
50
51 vnc = Param.VncInput(Parent.any, "VNC server providing keyboard input")
52
53class PS2Mouse(PS2Device):
54 type = 'PS2Mouse'
55 cxx_header = "dev/ps2/mouse.hh"
56
57class PS2TouchKit(PS2Device):
58 type = 'PS2TouchKit'
59 cxx_header = "dev/ps2/touchkit.hh"
60
61 vnc = Param.VncInput(Parent.any, "VNC server providing mouse input")