pyasm2 icon indicating copy to clipboard operation
pyasm2 copied to clipboard

An easy and powerful assembler engine in python.

Results 4 pyasm2 issues
Sort by recently updated
recently updated
newest added

Copy edited (e.g. ref. ). Consistent use of "for example". [(its = possessive, it's = "it is" or "it has". See for example .)]

Seems there are several problems when I'm trying to assemble xchg instructions, here is an example : >>> '%s' % xchg(esi, esp) Traceback (most recent call last): File "stdin", line...

When referencing an address with a segment, e.g. in the following snippet. ``` python mov(eax, dword[fs:eax]) ``` Then, because the python index limit for 32bit versions is MAX_INT which is...