python

Dependencies:   TSI mbed

Fork of pymite by Norimasa Okamoto

Committer:
kausdev
Date:
Thu Aug 28 19:35:16 2014 +0000
Revision:
12:d27ad05214e3
Parent:
0:65f1469d6bfb
pymte

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:65f1469d6bfb 1 /*
va009039 0:65f1469d6bfb 2 # This file is Copyright 2009 Dean Hall.
va009039 0:65f1469d6bfb 3 #
va009039 0:65f1469d6bfb 4 # This file is part of the Python-on-a-Chip program.
va009039 0:65f1469d6bfb 5 # Python-on-a-Chip is free software: you can redistribute it and/or modify
va009039 0:65f1469d6bfb 6 # it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
va009039 0:65f1469d6bfb 7 #
va009039 0:65f1469d6bfb 8 # Python-on-a-Chip is distributed in the hope that it will be useful,
va009039 0:65f1469d6bfb 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
va009039 0:65f1469d6bfb 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
va009039 0:65f1469d6bfb 11 # A copy of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1
va009039 0:65f1469d6bfb 12 # is seen in the file COPYING up one directory from this.
va009039 0:65f1469d6bfb 13 */
va009039 0:65f1469d6bfb 14
va009039 0:65f1469d6bfb 15 #ifndef _PLAT_H_
va009039 0:65f1469d6bfb 16 #define _PLAT_H_
va009039 0:65f1469d6bfb 17
va009039 0:65f1469d6bfb 18 #define PM_FLOAT_LITTLE_ENDIAN
va009039 0:65f1469d6bfb 19 #define PM_PLAT_HEAP_ATTR __attribute__((aligned (4)))
va009039 0:65f1469d6bfb 20 #define PM_PLAT_POINTER_SIZE 4
va009039 0:65f1469d6bfb 21
va009039 0:65f1469d6bfb 22 #endif /* _PLAT_H_ */