On 2012-Nov-2 12:49 , Programmingkid wrote:
Can a keyboard node word be accessed in OpenBIOS? If so, how?
In general, any device method call be called via:
( $device-path) open-dev ( ihandle | 0 )
then (repeat as needed):
( ... $method-name ihandle ) $call-method ( ??? )
When you're done,
( ihandle ) close-dev
In the case of keyboard, since it is always an open and active device, make sure you aren't doing something that will foul up the console driver.