diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-22 19:25:23 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-22 19:25:23 +0000 |
commit | 438c88dd2fbf8250883882188cca513ce534271f (patch) | |
tree | 601f43c00efc8ad90d04891ddc61cbb6351a6aeb /unix | |
parent | 20773971186151b53426bd607908546598036a16 (diff) | |
download | micropython-438c88dd2fbf8250883882188cca513ce534271f.tar.gz micropython-438c88dd2fbf8250883882188cca513ce534271f.zip |
Add arbitrary precision integer support.
Some functionality is still missing (eg and, or, bit shift), and some
things are buggy (eg subtract).
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 5b2503f4da..456ec02d5b 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -14,7 +14,7 @@ #define MICROPY_ENABLE_LEXER_UNIX (1) #define MICROPY_ENABLE_SOURCE_LINE (1) #define MICROPY_ENABLE_FLOAT (1) -#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG) +#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_PATH_MAX (PATH_MAX) // type definitions for the specific machine |