- Implement logical keyboard interface. Converts scan code to ASCII codes (just ok).
[reactos.git] / reactos / boot / armllb / fw.c
1 /*
2 * PROJECT: ReactOS Boot Loader
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: boot/armllb/fw.c
5 * PURPOSE: LLB Firmware Routines (accessible by OS Loader)
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9 #include "precomp.h"
10
11 VOID
12 LlbFwPutChar(INT Ch)
13 {
14 /* Just call directly the video function */
15 LlbVideoPutChar(Ch);
16
17 /* DEBUG ONLY */
18 LlbSerialPutChar(Ch);
19 }
20
21 BOOLEAN
22 LlbFwKbHit(VOID)
23 {
24 /* Not yet implemented */
25 return FALSE;
26 }
27
28 INT
29 LlbFwGetCh(VOID)
30 {
31 /* Return the key pressed */
32 return LlbKeyboardGetChar();
33 }
34
35 /* EOF */