2014-05-03 18:27:38 -04:00
|
|
|
/*
|
2017-06-30 03:22:17 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-06-30 03:22:17 -04:00
|
|
|
// options to control how MicroPython is built
|
2014-01-27 16:53:28 -05:00
|
|
|
|
2018-12-14 21:54:55 -05:00
|
|
|
// By default use MicroPython version of readline
|
2014-01-27 16:53:28 -05:00
|
|
|
#ifndef MICROPY_USE_READLINE
|
2015-06-01 05:41:28 -04:00
|
|
|
#define MICROPY_USE_READLINE (1)
|
2014-01-27 16:53:28 -05:00
|
|
|
#endif
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (260) // see minwindef.h for msvc or limits.h for mingw
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PERSISTENT_CODE_LOAD (1)
|
2014-04-20 15:20:48 -04:00
|
|
|
#define MICROPY_EMIT_X64 (0)
|
2014-01-27 16:53:28 -05:00
|
|
|
#define MICROPY_EMIT_THUMB (0)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (0)
|
2015-01-10 09:07:24 -05:00
|
|
|
#define MICROPY_COMP_MODULE_CONST (1)
|
2015-03-14 09:11:35 -04:00
|
|
|
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1)
|
2017-04-22 01:09:15 -04:00
|
|
|
#define MICROPY_COMP_RETURN_IF_EXPR (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2017-12-14 05:09:59 -05:00
|
|
|
#define MICROPY_ENABLE_PYSTACK (1)
|
2015-01-12 10:34:53 -05:00
|
|
|
#define MICROPY_STACK_CHECK (1)
|
2015-02-27 04:54:12 -05:00
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
2014-01-27 16:53:28 -05:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2018-08-02 00:04:44 -04:00
|
|
|
#define MICROPY_DEBUG_PRINTER (&mp_stderr_print)
|
2014-01-27 16:53:28 -05:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2016-11-16 04:27:12 -05:00
|
|
|
#define MICROPY_READER_POSIX (1)
|
2015-06-01 05:41:28 -04:00
|
|
|
#define MICROPY_USE_READLINE_HISTORY (1)
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_HELPER_REPL (1)
|
2015-09-21 06:42:08 -04:00
|
|
|
#define MICROPY_REPL_EMACS_KEYS (1)
|
|
|
|
#define MICROPY_REPL_AUTO_INDENT (1)
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
|
|
|
#define MICROPY_STREAMS_NON_BLOCK (1)
|
2017-12-14 05:09:59 -05:00
|
|
|
#define MICROPY_STREAMS_POSIX_API (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_OPT_COMPUTED_GOTO (0)
|
2019-10-21 10:08:27 -04:00
|
|
|
#define MICROPY_MODULE_WEAK_LINKS (1)
|
2014-12-09 11:19:48 -05:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2020-03-18 02:47:15 -04:00
|
|
|
#define MICROPY_VFS_POSIX_FILE (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_FUNCTION_ATTRS (1)
|
2015-02-14 12:43:54 -05:00
|
|
|
#define MICROPY_PY_DESCRIPTORS (1)
|
2021-04-22 12:01:46 -04:00
|
|
|
#define MICROPY_PY_DELATTR_SETATTR (1)
|
2021-08-12 11:44:08 -04:00
|
|
|
#define MICROPY_PY_FSTRINGS (1)
|
2014-10-04 02:38:07 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_CENTER (1)
|
|
|
|
#define MICROPY_PY_BUILTINS_STR_PARTITION (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (1)
|
2014-11-16 04:56:22 -05:00
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2014-06-01 08:32:54 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
2014-11-16 04:56:22 -05:00
|
|
|
#define MICROPY_PY_BUILTINS_COMPILE (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
|
2017-06-01 02:29:02 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_INPUT (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_POW3 (1)
|
2021-02-19 05:53:09 -05:00
|
|
|
#define MICROPY_PY_BUILTINS_HELP (1)
|
|
|
|
#define MICROPY_PY_BUILTINS_HELP_MODULES (1)
|
2021-04-22 12:01:46 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_ROUND_INT (1)
|
2015-01-09 15:30:26 -05:00
|
|
|
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
|
2017-12-14 05:09:59 -05:00
|
|
|
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
|
2015-09-21 06:42:08 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_SLICE_ATTRS (1)
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2021-04-22 12:01:46 -04:00
|
|
|
#define MICROPY_PY_SYS_ATEXIT (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_PY_SYS_PLATFORM "win32"
|
2020-02-04 05:09:09 -05:00
|
|
|
#ifndef MICROPY_PY_SYS_PATH_DEFAULT
|
|
|
|
#define MICROPY_PY_SYS_PATH_DEFAULT "~/.micropython/lib"
|
|
|
|
#endif
|
2014-09-22 05:05:42 -04:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_PY_SYS_STDFILES (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_SYS_EXC_INFO (1)
|
2018-02-21 06:55:13 -05:00
|
|
|
#define MICROPY_PY_COLLECTIONS_DEQUE (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
|
|
|
|
#define MICROPY_PY_MATH_SPECIAL_FUNCTIONS (1)
|
2019-07-02 04:28:44 -04:00
|
|
|
#define MICROPY_PY_MATH_ISCLOSE (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_PY_CMATH (1)
|
2021-04-22 12:01:46 -04:00
|
|
|
#define MICROPY_PY_IO_IOBASE (1)
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_PY_IO_FILEIO (1)
|
2014-06-12 11:45:41 -04:00
|
|
|
#define MICROPY_PY_GC_COLLECT_RETVAL (1)
|
2016-01-31 17:24:16 -05:00
|
|
|
#define MICROPY_MODULE_FROZEN_STR (0)
|
2015-09-21 06:42:08 -04:00
|
|
|
|
|
|
|
#define MICROPY_STACKLESS (0)
|
|
|
|
#define MICROPY_STACKLESS_STRICT (0)
|
2014-09-22 05:05:42 -04:00
|
|
|
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_UTIME (1)
|
|
|
|
#define MICROPY_PY_UTIME_MP_HAL (1)
|
2016-09-09 08:26:27 -04:00
|
|
|
#define MICROPY_PY_UERRNO (1)
|
2014-09-01 04:16:07 -04:00
|
|
|
#define MICROPY_PY_UCTYPES (1)
|
2014-10-13 07:12:32 -04:00
|
|
|
#define MICROPY_PY_UZLIB (1)
|
2014-09-22 05:05:42 -04:00
|
|
|
#define MICROPY_PY_UJSON (1)
|
2014-11-16 04:56:22 -05:00
|
|
|
#define MICROPY_PY_URE (1)
|
|
|
|
#define MICROPY_PY_UHEAPQ (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_UTIMEQ (1)
|
2014-12-18 10:53:46 -05:00
|
|
|
#define MICROPY_PY_UHASHLIB (1)
|
|
|
|
#define MICROPY_PY_UBINASCII (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_UBINASCII_CRC32 (1)
|
2016-01-24 14:48:29 -05:00
|
|
|
#define MICROPY_PY_URANDOM (1)
|
2015-05-13 04:31:33 -04:00
|
|
|
#define MICROPY_PY_MACHINE (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_MACHINE_PULSE (1)
|
|
|
|
#define MICROPY_MACHINE_MEM_GET_READ_ADDR mod_machine_mem_get_addr
|
|
|
|
#define MICROPY_MACHINE_MEM_GET_WRITE_ADDR mod_machine_mem_get_addr
|
2014-09-22 05:05:42 -04:00
|
|
|
|
2014-06-28 15:04:20 -04:00
|
|
|
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_DETAILED)
|
2017-12-14 05:09:59 -05:00
|
|
|
#define MICROPY_ERROR_PRINTER (&mp_stderr_print)
|
2015-09-21 06:42:08 -04:00
|
|
|
#define MICROPY_WARNINGS (1)
|
2017-04-21 07:17:15 -04:00
|
|
|
#define MICROPY_PY_STR_BYTES_CMP_WARN (1)
|
|
|
|
|
2020-08-31 00:55:54 -04:00
|
|
|
// VFS stat functions should return time values relative to 1970/1/1
|
|
|
|
#define MICROPY_EPOCH_IS_1970 (1)
|
|
|
|
|
2017-12-14 05:09:59 -05:00
|
|
|
extern const struct _mp_print_t mp_stderr_print;
|
|
|
|
|
2014-06-12 11:45:41 -04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define MICROPY_GCREGS_SETJMP (1)
|
2018-07-03 06:30:42 -04:00
|
|
|
#define MICROPY_USE_INTERNAL_PRINTF (0)
|
2014-06-12 11:45:41 -04:00
|
|
|
#endif
|
2014-06-28 15:04:20 -04:00
|
|
|
|
2014-09-22 05:05:42 -04:00
|
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
2014-11-16 04:56:22 -05:00
|
|
|
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (256)
|
2017-04-10 03:17:22 -04:00
|
|
|
#define MICROPY_KBD_EXCEPTION (1)
|
2014-09-22 05:05:42 -04:00
|
|
|
|
2020-03-18 02:47:15 -04:00
|
|
|
#define mp_type_fileio mp_type_vfs_posix_fileio
|
|
|
|
#define mp_type_textio mp_type_vfs_posix_textio
|
|
|
|
|
2014-05-03 05:28:29 -04:00
|
|
|
#define MICROPY_PORT_INIT_FUNC init()
|
2014-05-08 04:56:33 -04:00
|
|
|
#define MICROPY_PORT_DEINIT_FUNC deinit()
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2014-05-05 06:18:27 -04:00
|
|
|
#if defined(__MINGW32__) && defined(__LP64__)
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef long mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned long mp_uint_t; // must be pointer size
|
2015-11-20 09:59:06 -05:00
|
|
|
#elif defined(__MINGW32__) && defined(_WIN64)
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef __int64 mp_int_t;
|
|
|
|
typedef unsigned __int64 mp_uint_t;
|
|
|
|
#define MP_SSIZE_MAX __INT64_MAX__
|
2014-05-05 06:18:27 -04:00
|
|
|
#elif defined(_MSC_VER) && defined(_WIN64)
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef __int64 mp_int_t;
|
|
|
|
typedef unsigned __int64 mp_uint_t;
|
2014-01-27 16:53:28 -05:00
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless for actual size.
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef int mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned int mp_uint_t; // must be pointer size
|
2014-01-27 16:53:28 -05:00
|
|
|
#endif
|
|
|
|
|
2020-04-13 14:56:31 -04:00
|
|
|
typedef long suseconds_t;
|
|
|
|
|
2014-10-06 16:18:59 -04:00
|
|
|
// Just assume Windows is little-endian - mingw32 gcc doesn't
|
|
|
|
// define standard endianness macros.
|
|
|
|
#define MP_ENDIANNESS_LITTLE (1)
|
|
|
|
|
2014-11-16 17:16:14 -05:00
|
|
|
// Cannot include <sys/types.h>, as it may lead to symbol name clashes
|
|
|
|
#if _FILE_OFFSET_BITS == 64 && !defined(__LP64__)
|
|
|
|
typedef long long mp_off_t;
|
|
|
|
#else
|
|
|
|
typedef long mp_off_t;
|
|
|
|
#endif
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2017-08-21 07:34:23 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
|
2014-05-03 04:26:04 -04:00
|
|
|
|
2014-09-22 05:05:42 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_os;
|
2014-05-08 04:56:33 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_time;
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2017-08-21 07:34:23 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_utime), MP_ROM_PTR(&mp_module_time) }, \
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_umachine), MP_ROM_PTR(&mp_module_machine) }, \
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uos), MP_ROM_PTR(&mp_module_os) }, \
|
2014-05-08 04:56:33 -04:00
|
|
|
|
2015-06-01 05:41:28 -04:00
|
|
|
#if MICROPY_USE_READLINE == 1
|
|
|
|
#define MICROPY_PORT_ROOT_POINTERS \
|
2017-04-10 03:17:22 -04:00
|
|
|
char *readline_hist[50];
|
2015-06-01 05:41:28 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MP_STATE_PORT MP_STATE_VM
|
|
|
|
|
2015-10-30 19:03:58 -04:00
|
|
|
#define MICROPY_MPHALPORT_H "windows_mphal.h"
|
2015-06-01 05:41:28 -04:00
|
|
|
|
2014-06-08 08:50:57 -04:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
#include <malloc.h>
|
|
|
|
|
2014-05-03 04:26:04 -04:00
|
|
|
#include "realpath.h"
|
2014-05-03 05:28:29 -04:00
|
|
|
#include "init.h"
|
2015-10-25 07:40:24 -04:00
|
|
|
#include "sleep.h"
|
2014-05-05 06:18:27 -04:00
|
|
|
|
2016-01-28 18:05:53 -05:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define MP_NOINLINE __attribute__((noinline))
|
|
|
|
#endif
|
|
|
|
|
2014-05-05 06:18:27 -04:00
|
|
|
// MSVC specifics
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
|
|
|
// Sanity check
|
|
|
|
|
|
|
|
#if (_MSC_VER < 1800)
|
|
|
|
#error Can only build with Visual Studio 2013 toolset
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-06-08 08:25:33 -04:00
|
|
|
// CL specific overrides from mpconfig
|
2014-05-05 06:18:27 -04:00
|
|
|
|
2014-09-22 05:05:42 -04:00
|
|
|
#define NORETURN __declspec(noreturn)
|
2019-06-23 23:32:41 -04:00
|
|
|
#define MP_WEAK
|
2016-01-28 18:05:53 -05:00
|
|
|
#define MP_NOINLINE __declspec(noinline)
|
2015-01-04 03:46:47 -05:00
|
|
|
#define MP_LIKELY(x) (x)
|
|
|
|
#define MP_UNLIKELY(x) (x)
|
2014-09-22 05:05:42 -04:00
|
|
|
#define MICROPY_PORT_CONSTANTS { "dummy", 0 } // can't have zero-sized array
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define MP_SSIZE_MAX _I64_MAX
|
|
|
|
#else
|
|
|
|
#define MP_SSIZE_MAX _I32_MAX
|
|
|
|
#endif
|
2014-05-05 06:18:27 -04:00
|
|
|
|
2020-05-17 06:29:25 -04:00
|
|
|
// VC++ 12.0 fixes
|
|
|
|
#if (_MSC_VER <= 1800)
|
|
|
|
#define MICROPY_PY_MATH_ATAN2_FIX_INFNAN (1)
|
|
|
|
#define MICROPY_PY_MATH_FMOD_FIX_INFNAN (1)
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define MICROPY_PY_MATH_MODF_FIX_NEGZERO (1)
|
2020-09-08 09:22:34 -04:00
|
|
|
#else
|
|
|
|
#define MICROPY_PY_MATH_POW_FIX_NAN (1)
|
2020-05-17 06:29:25 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2014-05-05 06:18:27 -04:00
|
|
|
|
|
|
|
// CL specific definitions
|
|
|
|
|
2019-07-17 06:08:40 -04:00
|
|
|
#ifndef __cplusplus
|
2014-05-05 06:18:27 -04:00
|
|
|
#define restrict
|
|
|
|
#define inline __inline
|
2014-08-13 04:19:56 -04:00
|
|
|
#define alignof(t) __alignof(t)
|
2019-07-17 06:08:40 -04:00
|
|
|
#endif
|
2014-05-27 08:35:28 -04:00
|
|
|
#define PATH_MAX MICROPY_ALLOC_PATH_MAX
|
2014-05-05 06:18:27 -04:00
|
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
2015-11-13 11:43:10 -05:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define SSIZE_MAX _I64_MAX
|
|
|
|
typedef __int64 ssize_t;
|
|
|
|
#else
|
|
|
|
#define SSIZE_MAX _I32_MAX
|
|
|
|
typedef int ssize_t;
|
|
|
|
#endif
|
2017-12-14 04:58:49 -05:00
|
|
|
typedef mp_off_t off_t;
|
2014-05-05 06:18:27 -04:00
|
|
|
|
|
|
|
|
2015-01-08 04:32:45 -05:00
|
|
|
// Put static/global variables in sections with a known name
|
|
|
|
// This used to be required for GC, not the case anymore but keep it as it makes the map file easier to inspect
|
2014-06-12 11:45:41 -04:00
|
|
|
// For this to work this header must be included by all sources, which is the case normally
|
|
|
|
#define MICROPY_PORT_DATASECTION "upydata"
|
|
|
|
#define MICROPY_PORT_BSSSECTION "upybss"
|
|
|
|
#pragma data_seg(MICROPY_PORT_DATASECTION)
|
|
|
|
#pragma bss_seg(MICROPY_PORT_BSSSECTION)
|
|
|
|
|
|
|
|
|
2014-05-05 06:18:27 -04:00
|
|
|
// System headers (needed e.g. for nlr.h)
|
|
|
|
|
|
|
|
#include <stddef.h> // for NULL
|
|
|
|
#include <assert.h> // for assert
|
|
|
|
|
|
|
|
#endif
|