blob: 117892b3d608bbc6700c139b6f12897e916d012e [file] [log] [blame]
Damienc025ebb2013-10-12 14:30:21 +01001// options to control how Micro Python is built
2
3//#define MICROPY_ENABLE_FLOAT
4#define MICROPY_EMIT_ENABLE_CPYTHON
5#define MICROPY_EMIT_ENABLE_X64
6//#define MICROPY_EMIT_ENABLE_THUMB
7#define MICROPY_EMIT_ENABLE_INLINE_THUMB
8
9// type definitions for the specific machine
10
11typedef int64_t machine_int_t; // must be pointer size
12typedef uint64_t machine_uint_t; // must be pointer size
13typedef void *machine_ptr_t; // must be of pointer size
14typedef double machine_float_t;