Skip to content

ninjamar/pyaw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PYthon Assembly Wrapper

About PYAW

PYAW allows you to call assembly from python

Installation

pip install pyaw

Example

lib.asm

global foo
foo:
	mov rax,100
	ret

main.py

import pyaw
lib = pyaw.load_asm(
	'lib.asm',
	[
		['foo',[],'int']
	]
)
print(lib.foo()) # this prints 100
  • The first argument to pyaw.load_asm is the file
  • The second argument is a list which contains information about the exported function inside lib.asm
    • The first item is a list which follows the format of [function_name,[argument types],returntype]
      • The only type allowed currently is int which can be inputed as "int" rather than the class because it gets changed to ctypes.c_int

TODO

Releases

No releases published

Packages

No packages published

Languages