Implemented arch_debug_serial_getchar(), so we can even type something in

KDL. :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15770 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2006-01-01 15:09:11 +00:00
parent b9b301b6c8
commit 5b35f4211e

View File

@ -30,7 +30,10 @@ arch_debug_blue_screen_getchar(void)
char
arch_debug_serial_getchar(void)
{
return 0;
int key;
if (of_interpret("key", 0, 1, &key) == OF_FAILED)
return 0;
return (char)key;
}