summaryrefslogtreecommitdiff
path: root/6502/src/main.c
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-07-09 23:51:55 -0400
committerLLLL Colonq <llll@colonq>2026-07-09 23:51:55 -0400
commit2bdcaf319b1d74ffbaccf08a58336f804761beab (patch)
treec21de6df74ec79b5574ad2b89fcc275d10847802 /6502/src/main.c
Refactor into monorepo
Diffstat (limited to '6502/src/main.c')
-rw-r--r--6502/src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/6502/src/main.c b/6502/src/main.c
new file mode 100644
index 0000000..fe54ce7
--- /dev/null
+++ b/6502/src/main.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char **argv) {
+ (void) argc; (void) argv;
+ puts("hi");
+}