I want to execute assembly code inside a python script. Is that possible?
In C programming would be like this
static inline getesp(){
__asm__(\"m
In theory, you could:
I have to admit that I haven't used either Pyrex or Cython, but they might be able to do what you need without having to go to the trouble of writing a full blown C extension.