add some comments on picconf.h
This commit is contained in:
parent
7925f2b502
commit
fc9e2401a3
|
@ -1,13 +1,16 @@
|
||||||
#ifndef PICCONF_H__
|
#ifndef PICCONF_H__
|
||||||
#define PICCONF_H__
|
#define PICCONF_H__
|
||||||
|
|
||||||
|
/* switch normal VM and direct threaded VM */
|
||||||
#define PIC_DIRECT_THREADED_VM 1
|
#define PIC_DIRECT_THREADED_VM 1
|
||||||
|
|
||||||
|
/* initial memory size (to be dynamically extended if necessary) */
|
||||||
#define PIC_ARENA_SIZE 100
|
#define PIC_ARENA_SIZE 100
|
||||||
#define PIC_HEAP_SIZE 8192
|
#define PIC_HEAP_SIZE 8192
|
||||||
#define PIC_STACK_SIZE 1024
|
#define PIC_STACK_SIZE 1024
|
||||||
#define PIC_IREP_SIZE 256
|
#define PIC_IREP_SIZE 256
|
||||||
|
|
||||||
|
/* enable all debug flags */
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|
Loading…
Reference in New Issue