summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/stdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80/libc/stdio.c')
-rw-r--r--sw/z80/libc/stdio.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sw/z80/libc/stdio.c b/sw/z80/libc/stdio.c
new file mode 100644
index 0000000..c2548d6
--- /dev/null
+++ b/sw/z80/libc/stdio.c
@@ -0,0 +1,12 @@
+#include "stdio.h"
+
+void putc(char ch, uint8_t *buffer)
+{
+ *buffer = ch;
+ *(++buffer) = '\0';
+}
+
+
+int printf(const char *fmt, ...)
+{
+}