mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 04:23:41 +00:00
Add rudimentary interface support
This commit is contained in:
@@ -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(' ');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user