diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-06 22:13:00 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-07 22:51:08 +0000 |
commit | 1a9951d5aab681a4ff408d8520696b9f67b83d49 (patch) | |
tree | bd45b157eade73033cad4eb1336ec5357f881743 /py/asmx64.c | |
parent | be8fe5be2eb89cd8db741b16dcb50bf5966c33ae (diff) |
py: Fix up number operations and coercion.
Diffstat (limited to 'py/asmx64.c')
-rw-r--r-- | py/asmx64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmx64.c b/py/asmx64.c index ed9ca80f5..226d4efee 100644 --- a/py/asmx64.c +++ b/py/asmx64.c @@ -155,7 +155,7 @@ void asm_x64_end_pass(asm_x64_t *as) { //as->code_base = m_new(byte, as->code_size); need to allocale executable memory uint actual_alloc; as->code_base = alloc_mem(as->code_size, &actual_alloc, true); - printf("code_size: %u\n", as->code_size); + //printf("code_size: %u\n", as->code_size); } /* |