summaryrefslogtreecommitdiff
path: root/py/asmarm.h
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-01-10 15:57:04 -0800
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-01-12 12:46:18 -0800
commitcea5503ca006c712c007ad6d38c140c4ac241638 (patch)
treee7312e65bd59a2f81d3ea7c42eee7b4832295d7c /py/asmarm.h
parentdfb61f01dbd1d580ff11503f531bb5972cbbd433 (diff)
Fixup warnings from merge about undefined macro values, switch to
VM keyboard exception and switch to FATFS reader.
Diffstat (limited to 'py/asmarm.h')
-rw-r--r--py/asmarm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmarm.h b/py/asmarm.h
index e273b98d7..8a114f8a9 100644
--- a/py/asmarm.h
+++ b/py/asmarm.h
@@ -122,7 +122,7 @@ void asm_arm_bcc_label(asm_arm_t *as, int cond, uint label);
void asm_arm_b_label(asm_arm_t *as, uint label);
void asm_arm_bl_ind(asm_arm_t *as, void *fun_ptr, uint fun_id, uint reg_temp);
-#if GENERIC_ASM_API
+#ifdef GENERIC_ASM_API
// The following macros provide a (mostly) arch-independent API to
// generate native code, and are used by the native emitter.