picrin/include/picconf.h

19 lines
241 B
C
Raw Normal View History

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
2013-10-15 10:27:26 -04:00
#define PIC_HEAP_SIZE 8192
2013-10-15 10:28:23 -04:00
#define PIC_STACK_SIZE 1024
2013-10-15 00:20:45 -04:00
2013-10-14 20:05:44 -04:00
#define DEBUG 1
#if DEBUG
# define OBJECT_CREATION_DEBUG 1
2013-10-14 20:05:44 -04:00
# define GC_DEBUG 1
# define VM_DEBUG 1
#endif
#endif