Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py: Add casting to viper; add native mem stores to viper. | Damien George | 2014-09-29 |
| | | | | | | | | | | Viper can now do the following: def store(p:ptr8, c:int): p[0] = c This does a store of c to the memory pointed to by p using a machine instructions inline in the code. | ||
* | py: Native emitter now supports delete name & global, and end finally. | Damien George | 2014-09-06 |
| | |||
* | py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. | Damien George | 2014-08-30 |
| | | | | Part of code cleanup, working towards resolving issue #50. | ||
* | py: Move native glue code from runtime.c to new file nativeglue.c.v1.3.1 | Damien George | 2014-08-28 |
This way, the native glue code is only compiled if native code is enabled (which makes complete sense; thanks to Paul Sokolovsky for the idea). Should fix issue #834. |