Add rudimentary interface support

This commit is contained in:
Ayke van Laethem
2018-04-19 20:30:06 +02:00
parent 850fef9852
commit 3e3c3d259f
3 changed files with 123 additions and 18 deletions
+4
View File
@@ -26,6 +26,10 @@ void __go_printint(intgo_t n) {
putchar((n % 10) + '0');
}
void __go_printbyte(uint8_t c) {
putchar(c);
}
void __go_printspace() {
putchar(' ');
}