diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 18:07:43 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 18:07:43 +0000 |
commit | ebde3c694f301a99addf02c3b8ff3834f04663af (patch) | |
tree | 108d34fc69d8e45d0a1bbd8e1046cee15c159d19 /py/asmthumb.h | |
parent | ddbcc795509bdd4957e876189577fdada0d486ac (diff) | |
download | micropython-ebde3c694f301a99addf02c3b8ff3834f04663af.tar.gz micropython-ebde3c694f301a99addf02c3b8ff3834f04663af.zip |
py: Add guarded includes for asm-based headers.
Diffstat (limited to 'py/asmthumb.h')
-rw-r--r-- | py/asmthumb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/asmthumb.h b/py/asmthumb.h index beb12502cf..93cad09e78 100644 --- a/py/asmthumb.h +++ b/py/asmthumb.h @@ -23,6 +23,10 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#ifndef __MICROPY_INCLUDED_PY_ASMTHUMB_H__ +#define __MICROPY_INCLUDED_PY_ASMTHUMB_H__ + +#include "py/misc.h" #define ASM_THUMB_PASS_COMPUTE (1) #define ASM_THUMB_PASS_EMIT (2) @@ -200,3 +204,5 @@ void asm_thumb_mov_reg_local_addr(asm_thumb_t *as, uint rlo_dest, int local_num) void asm_thumb_b_label(asm_thumb_t *as, uint label); // convenience ? void asm_thumb_bcc_label(asm_thumb_t *as, int cc, uint label); // convenience: picks narrow or wide branch void asm_thumb_bl_ind(asm_thumb_t *as, void *fun_ptr, uint fun_id, uint reg_temp); // convenience ? + +#endif // __MICROPY_INCLUDED_PY_ASMTHUMB_H__ |