python-on-a-chip online compiler

Dependencies:   mbed TSI

/media/uploads/va009039/p14p-f446re.png

more info: python-on-a-chip

vm/pmEmptyPlatformDefs.h

Committer:
va009039
Date:
2016-04-14
Revision:
15:94ca5c8003e5
Parent:
0:65f1469d6bfb

File content as of revision 15:94ca5c8003e5:

/*
# This file is Copyright 2010 Dean Hall.
# This file is part of the PyMite VM.
# This file is licensed under the MIT License.
# See the LICENSE file for details.
*/


#ifndef __PM_EMPTY_PLATFORM_DEFS_H__
#define __PM_EMPTY_PLATFORM_DEFS_H__


/**
 * \file
 * \brief Empty platform-specific definitions
 *
 * This file #defines as blank any undefined platform-specific
 * definitions.
 */

/**
 * Define a processor-specific specifier for use in declaring the heap.
 * If not defined, make it empty.
 * See <code>pmHeap</code> in heap.c for its use, which is:<br>
 * <code>static PmHeap_t pmHeap PM_PLAT_HEAP_ATTR;</code>
 */
#if !defined(PM_PLAT_HEAP_ATTR) || defined(__DOXYGEN__)
#define PM_PLAT_HEAP_ATTR
#endif

#endif /* __PM_EMPTY_PLATFORM_DEFS_H__ */