Skip to main content

A pure Python ARM processor emulator

Project description

Description

A pure python ARM emulator

Installation

Install the last released version using pip:

python3 -m pip install --user -U armulator

Or install the latest version from sources:

git clone git@github.com:matan1008/armulator.git
cd pyiosbackup
python3 -m pip install --user -U -e .

Usage

To create a processor object, you need to import it first:

from armulator.armv6.arm_v6 import ArmV6

Then you can just create it:

arm = ArmV6()

Getting familiar with the Memory controller concept is crucial for using the processor.
In short, there is one "hub" to which you can connect several controllers.
A "Memory Controller" can be a stick of RAM, Memory mapped LCD screen or whatever you wish.

For example, let's create a RAM controller:

from armulator.armv6.memory_types import RAM
from armulator.armv6.memory_controller_hub import MemoryController

mem = RAM(0x100)
mc = MemoryController(mem, 0xF0000000, 0xF0000100)
arm.mem.memories.append(mc)

Now, trying to access a memory between 0xF0000000 and 0xF0000100, will access the mem object.
You can also change the memory manually:

mem.write(0, 2, "\xfe\xe7")

Another useful feature is playing with the memory protection or management unit, for example cancelling memory protection will look like:

arm.registers.sctlr.m = 0
arm.take_reset()

Please note that after changing internal features it is recommended to reset the processor.

When running the armulator, you will probably want to start from a defined address, so:

arm.registers.branch_to(0x100)

The last thing we need to do is to really run the processor, which can be done with:

arm.emulate_cycle()

Running the tests

Running the tests can be done easily with pytest:

python3 -m pytest tests -vv

Acknowledgments

  • At first, I did it to learn the ARM architecture better. I guess I was carried away.
  • Feel free to report bugs.
  • Feel free to ask for more features.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

armulator-1.1.1.tar.gz (122.8 kB view details)

Uploaded Source

Built Distribution

armulator-1.1.1-py3-none-any.whl (537.4 kB view details)

Uploaded Python 3

File details

Details for the file armulator-1.1.1.tar.gz.

File metadata

  • Download URL: armulator-1.1.1.tar.gz
  • Upload date:
  • Size: 122.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for armulator-1.1.1.tar.gz
Algorithm Hash digest
SHA256 d83034a889494657e8ffdf1d3d72cec78fcd3e19f2dcbbb6985f716eb058db04
MD5 c75743c421828bd5b8b17fe9368545c6
BLAKE2b-256 04a47b67072689e88af6efdfcb8c89e7255dcfc4dfb45fe1b2e21a42d6af0b17

See more details on using hashes here.

File details

Details for the file armulator-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: armulator-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 537.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for armulator-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 88087973318f03ea272f19c0405d4edd46c543942e6a52b16af4261cecd75262
MD5 600deeee96bf64506274f712d7f1ebd4
BLAKE2b-256 429c2daa0c7607ad88f8c6039a0c1cfa0033c62f9181e35d572544d523c21abf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page