diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-05 18:41:24 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-05 18:41:24 +0100 |
commit | 5bfb759980c3891a9401d877fb225770146c79df (patch) | |
tree | e83753f53e02c3b54b0cf7375da95b0532f5877e /py/asmthumb.h | |
parent | 6cdd3af6014b28e0b3824641e6958c144b8e2cd2 (diff) | |
download | micropython-5bfb759980c3891a9401d877fb225770146c79df.tar.gz micropython-5bfb759980c3891a9401d877fb225770146c79df.zip |
Incorporate emit_thumb into new emit framework.
Diffstat (limited to 'py/asmthumb.h')
-rw-r--r-- | py/asmthumb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmthumb.h b/py/asmthumb.h index d3ffb9a003..bbf4ef20b3 100644 --- a/py/asmthumb.h +++ b/py/asmthumb.h @@ -28,7 +28,7 @@ typedef struct _asm_thumb_t asm_thumb_t; -asm_thumb_t *asm_thumb_new(); +asm_thumb_t *asm_thumb_new(uint max_num_labels); void asm_thumb_free(asm_thumb_t *as, bool free_code); void asm_thumb_start_pass(asm_thumb_t *as, int pass); void asm_thumb_end_pass(asm_thumb_t *as); |