mirror of https://github.com/YosysHQ/picorv32.git
15 lines
152 B
C
15 lines
152 B
C
|
void putc(char c)
|
||
|
{
|
||
|
*(volatile char*)0x10000000 = c;
|
||
|
}
|
||
|
|
||
|
void puts(const char *s)
|
||
|
{
|
||
|
while (*s) putc(*s++);
|
||
|
}
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
puts("Hello World!\n");
|
||
|
}
|