diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-06 22:13:00 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-06 22:13:00 +0000 |
commit | e2e3d11e8744395d3103b824adc8609b13f2cdba (patch) | |
tree | 680bb38dac6c65722b38866d7d17befae0edb7af /py/asmx64.c | |
parent | 8137b004b004d8e3a594eab90afccb72b779273a (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); } /* |