Initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user