initial commit

This commit is contained in:
billsun
2023-08-31 18:39:41 +00:00
commit 8e8c90ec38
30 changed files with 1900 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <stdio.h>
// assembly function that we are compiling
int entry_point();
int main() {
printf("Result: %d\n", entry_point());
return 0;
}