Files
compiler_proj3/proj3/gen/bootstrap.c
T
2023-09-17 08:07:19 -04:00

13 lines
236 B
C

#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;
}