sandbox/misc/kforth/pc/defs.h

12 lines
257 B
C
Raw Normal View History

2018-03-03 01:03:32 +00:00
#ifndef __KF_PC_DEFS_H__
#define __KF_PC_DEFS_H__
2018-03-02 16:47:56 +00:00
2018-03-03 01:03:32 +00:00
typedef int32_t 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 = 65535;
static const size_t RSTACK_SIZE = 65535;
static const size_t DICT_SIZE = 65535;
2018-03-02 16:47:56 +00:00
2018-03-03 01:03:32 +00:00
#endif /* __KF_PC_DEFS_H__ */