mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
10 lines
161 B
C
10 lines
161 B
C
#include "uvm32_target.h"
|
|
|
|
void main(void) {
|
|
println("Hello world");
|
|
print("Hello world");
|
|
printdec(42);
|
|
printhex(0xDEADBEEF);
|
|
putc('G');
|
|
}
|
|
|