summaryrefslogtreecommitdiffstats
path: root/Tests/Assembler/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Assembler/main.c')
-rw-r--r--Tests/Assembler/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Assembler/main.c b/Tests/Assembler/main.c
new file mode 100644
index 0000000..3704ad0
--- /dev/null
+++ b/Tests/Assembler/main.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(int argc, char** argv)
+{
+ printf("hello assembler world, %d arguments given\n", argc);
+ return 0;
+}