summaryrefslogtreecommitdiffstats
path: root/src/emu/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/syscall.c')
-rw-r--r--src/emu/syscall.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/emu/syscall.c b/src/emu/syscall.c
index 625bbf4..aba3448 100644
--- a/src/emu/syscall.c
+++ b/src/emu/syscall.c
@@ -1,5 +1,6 @@
#include <unistd.h>
#include <stdlib.h>
+#include <inttypes.h>
#include "cpu.h"
#include "mem.h"
@@ -13,11 +14,8 @@ void do_syscall(void)
case SYS_exit:
exit(arg(1));
break;
- case SYS_read:
- push(read(arg(1), &MEM[arg(2)], arg(3)));
- break;
- case SYS_write:
- push(write(arg(1), &MEM[arg(2)], arg(3)));
+ case SYS_print:
+ printf("%"PRIu32"\n", arg(1));
break;
default:
push(-1);