https://github.com/henryquan/arm-converter
Convert ARM instructions to machine code on your Windows machines
https://github.com/henryquan/arm-converter
arm converter ios python3
Last synced: 3 months ago
JSON representation
Convert ARM instructions to machine code on your Windows machines
- Host: GitHub
- URL: https://github.com/henryquan/arm-converter
- Owner: HenryQuan
- License: agpl-3.0
- Created: 2023-10-29T10:23:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-01T00:00:37.000Z (over 1 year ago)
- Last Synced: 2025-02-18T08:52:01.772Z (4 months ago)
- Topics: arm, converter, ios, python3
- Language: Python
- Homepage: https://pypi.org/project/arm-converter/
- Size: 2.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ARM Converter
A local ARM converter for iOS Reverse Engineering similar to armconverter.com. It has support for ARM32 & ARM64 with both little & big endian. You can extend it by downloading different toolchains. Currently, `as` and `objdump` are required for the script to work. Download the ARM toolchains [here](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads).## Building
- Run `python -m build` to build the package
- Install with `pip install --force-reinstall arm_converter --find-links=dist`## Publishing
- Check with `twine check dist/*`
- Upload to TestPyPI before publishing it `twine upload -r testpypi dist/*`
- Install with `pip install arm_converter -i https://testpypi.python.org/pypi`
- Publish it with `twine upload dist/*`