8bitworkshop/presets/arm32/serialout.c

8 lines
85 B
C
Raw Normal View History

2023-12-30 21:25:16 +00:00
#define SERIAL_OUT ((int*)0x4000048)
void putchar_(char c) {
*SERIAL_OUT = c;
}