comparison mem.h @ 14:2bdad0f52f42

x86 code gen, initial work on translator
author Mike Pavone <pavone@retrodev.com>
date Tue, 27 Nov 2012 09:28:13 -0800
parents
children 140af5509ce7
comparison
equal deleted inserted replaced
13:168b1a873895 14:2bdad0f52f42
1 #ifndef MEM_H_
2 #define MEM_H_
3
4 #include <stddef.h>
5
6 #define PAGE_SIZE 4096
7
8 void * alloc_code(size_t *size);
9
10 #endif //MEM_H_
11