2013-10-14 20:05:44 -04:00
|
|
|
#ifndef PICCONF_H__
|
|
|
|
#define PICCONF_H__
|
|
|
|
|
2013-10-15 06:12:17 -04:00
|
|
|
#define PIC_ARENA_SIZE 100
|
|
|
|
#define PIC_HEAP_SIZE 4096
|
2013-10-15 00:20:45 -04:00
|
|
|
|
2013-10-14 20:05:44 -04:00
|
|
|
#define DEBUG 1
|
|
|
|
|
|
|
|
#if DEBUG
|
2013-10-14 20:14:34 -04:00
|
|
|
# define OBJECT_CREATION_DEBUG 1
|
2013-10-14 20:05:44 -04:00
|
|
|
# define GC_DEBUG 1
|
|
|
|
# define VM_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|