aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio
diff options
context:
space:
mode:
authorMarvin Borner2020-05-02 15:44:11 +0200
committerMarvin Borner2020-05-02 15:44:11 +0200
commitaa8a8811818331cf511681327e3ba95e456f0d33 (patch)
tree852c314dae76e756863f94639ff45eff72834d5d /src/userspace/libc/stdio
parent2a0e810a473dea57fd1cd53ea424b61269c029ba (diff)
Added many syscalls to get better POSIX compliance
Diffstat (limited to 'src/userspace/libc/stdio')
-rw-r--r--src/userspace/libc/stdio/getch.c3
-rw-r--r--src/userspace/libc/stdio/putch.c5
2 files changed, 5 insertions, 3 deletions
diff --git a/src/userspace/libc/stdio/getch.c b/src/userspace/libc/stdio/getch.c
index 93d3d00..5f9655a 100644
--- a/src/userspace/libc/stdio/getch.c
+++ b/src/userspace/libc/stdio/getch.c
@@ -65,7 +65,8 @@ char shift_keymap[128] = {
char *getch()
{
// TODO: Add shift support
- u8 scancode = syscall_scancode();
+ // TODO: Implement keyboard dev driver
+ u8 scancode = 42; //syscall_scancode();
if ((scancode & 0x80) == 0) { // Press
return keymap[scancode];
} else { // Release
diff --git a/src/userspace/libc/stdio/putch.c b/src/userspace/libc/stdio/putch.c
index 3bc5a2e..f87680e 100644
--- a/src/userspace/libc/stdio/putch.c
+++ b/src/userspace/libc/stdio/putch.c
@@ -2,6 +2,7 @@
void putch(char ch)
{
- if (ch != 0)
- syscall_putch(ch);
+ // TODO: Implement framebuffer writing
+ //if (ch != 0)
+ //syscall_putch(ch);
} \ No newline at end of file