8bitworkshop/presets/arm32/serialout.c

8 lines
85 B
C

#define SERIAL_OUT ((int*)0x4000048)
void putchar_(char c) {
*SERIAL_OUT = c;
}