PS2.py (12653:4f6b6c1a8e2f) PS2.py (12654:749de33b7af6)
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

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

43 type = 'PS2Device'
44 cxx_header = "dev/ps2/device.hh"
45 abstract = True
46
47class PS2Keyboard(PS2Device):
48 type = 'PS2Keyboard'
49 cxx_header = "dev/ps2/keyboard.hh"
50
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

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

43 type = 'PS2Device'
44 cxx_header = "dev/ps2/device.hh"
45 abstract = True
46
47class PS2Keyboard(PS2Device):
48 type = 'PS2Keyboard'
49 cxx_header = "dev/ps2/keyboard.hh"
50
51 vnc = Param.VncInput(Parent.any, "VNC server providing keyboard input")
52
51class PS2Mouse(PS2Device):
52 type = 'PS2Mouse'
53 cxx_header = "dev/ps2/mouse.hh"
53class PS2Mouse(PS2Device):
54 type = 'PS2Mouse'
55 cxx_header = "dev/ps2/mouse.hh"