1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/arm32/skeleton.armtcc

12 lines
141 B
Plaintext
Raw Normal View History

2023-12-30 20:49:48 +00:00
#include <string.h>
#include <stdio.h>
2023-12-30 21:25:16 +00:00
//#link "serialout.c"
2023-12-30 20:49:48 +00:00
int main() {
2023-12-30 21:25:16 +00:00
int x = 2024;
2023-12-30 20:49:48 +00:00
printf("Hello World! %d\n", x);
return 0;
}