Initial commit

This commit is contained in:
2023-09-17 08:07:19 -04:00
commit acf15f81fe
29 changed files with 2406 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
// assembly function that we are compiling
int entry_point(char* heap);
int main() {
char* heap = malloc(10000 * 8);
printf("Exit Code: %d\n", entry_point(heap));
free(heap);
return 0;
}