8bitworkshop/presets/arm32/skeleton.armtcc

12 lines
141 B
Plaintext

#include <string.h>
#include <stdio.h>
//#link "serialout.c"
int main() {
int x = 2024;
printf("Hello World! %d\n", x);
return 0;
}