mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-12-02 19:49:29 +00:00
8 lines
85 B
C
8 lines
85 B
C
|
|
||
|
#define SERIAL_OUT ((int*)0x4000048)
|
||
|
|
||
|
void putchar_(char c) {
|
||
|
*SERIAL_OUT = c;
|
||
|
}
|
||
|
|