Metadata-Version: 2.1
Name: rasm
Version: 0.1.0
Summary: Assembler for 8-bit AVR microcontrollers
Home-page: https://github.com/raek/rasm
Author: Rasmus Bondesson
Author-email: raek@raek.se
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Assembly
Classifier: Topic :: Software Development :: Assemblers
Classifier: Topic :: Software Development :: Embedded Systems
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# rasm

This is an 8-bit AVR assembler I wrote for myself.

## Installation

    pip3 install rasm

## Usage

See the help from the command:

    python3 rasm.py --help

## Development

This tool is written in Python 3. To run the tests you also need
`avr-objdump`, `colordiff`, and `xxd`. On Debian or Ubuntu, these can
be installed like this:

    sudo apt install python3, python3-pip, python3-setuptools, python3-wheel, binutils-avt, colordiff, xxd

Install the package in editable mode:

    pip3 install -e .

To run the test suite, just invoke:

    ./run_tests.sh


