2018-03-03 01:03:32 +00:00
|
|
|
#ifndef __KF_DEFAULT_DEFS_H__
|
|
|
|
#define __KF_DEFAULT_DEFS_H__
|
2018-03-02 16:47:56 +00:00
|
|
|
|
2018-03-03 01:03:32 +00:00
|
|
|
typedef int KF_INT;
|
2018-03-02 16:47:56 +00:00
|
|
|
typedef uintptr_t KF_ADDR;
|
|
|
|
|
2018-03-03 01:03:32 +00:00
|
|
|
static const size_t DSTACK_SIZE = 12;
|
|
|
|
static const size_t RSTACK_SIZE = 12;
|
|
|
|
static const size_t DICT_SIZE = 4096;
|
2018-03-02 16:47:56 +00:00
|
|
|
|
2018-03-03 01:03:32 +00:00
|
|
|
#endif /* __KF_DEFAULT_DEFS_H__ */
|
2018-03-02 16:47:56 +00:00
|
|
|
|