mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12:00
Keybord support Added
* Implemented 'cellKb*' functions from 'sys_io' module, which are part of the libkb library. * Added corresponding entries in the 'Config > Settings' menu to change the handler of the keyboard. Supported handlers: Windows, Null. INFO: This keyboard library is *very* experimental and I am aware of some bugs. There will be improvements soon.
This commit is contained in:
parent
aea7f4aa77
commit
4835ae35af
15 changed files with 771 additions and 32 deletions
|
@ -15,4 +15,15 @@ void sys_io_init()
|
|||
sys_io.AddFunc(0xf65544ee, cellPadSetActDirect);
|
||||
sys_io.AddFunc(0xa703a51d, cellPadGetInfo2);
|
||||
sys_io.AddFunc(0x578e3c98, cellPadSetPortSetting);
|
||||
|
||||
sys_io.AddFunc(0x433f6ec0, cellKbInit);
|
||||
sys_io.AddFunc(0xbfce3285, cellKbEnd);
|
||||
sys_io.AddFunc(0x2073b7f6, cellKbClearBuf);
|
||||
sys_io.AddFunc(0x4ab1fa77, cellKbCnvRawCode);
|
||||
sys_io.AddFunc(0x2f1774d5, cellKbGetInfo);
|
||||
sys_io.AddFunc(0xff0a21b7, cellKbRead);
|
||||
sys_io.AddFunc(0xa5f85e4d, cellKbSetCodeType);
|
||||
sys_io.AddFunc(0x3f72c56e, cellKbSetLEDStatus);
|
||||
sys_io.AddFunc(0xdeefdfa7, cellKbSetReadMode);
|
||||
sys_io.AddFunc(0x1f71ecbe, cellKbGetConfiguration);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue