Assembler for Microchip(near Atmel) AVR microcontroller family
AVRA-RS Rust rewrites version of AVRA (https://github.com/hsoft/avra). I create AVRA-RS because original software has some issues and mistakes and I can't fix it. But after I change project mission and targets.
First of all I need to say - it is not full implementation of original assembler and it has some differences front original AVRA. For example everything constructions have tests - fully as possible.
AVRA-RS has most full implementation of directives and assembler commands, but not supported any extra options of AVRA
AVRA-RS support ATmega and ATtiny mcus but for ATtiny mcus not supported correct lds/sts commands.
To build the avra-rs
you can use cargo build
and cargo install
, or you can install
avra-rs
from https://crates.io
To compile source file you need to run avra-rs
with argument -s
for describe path to
source and optionally you can provide output path by -o
. for provide another place of
eeprom store you can use -e
key.
Other options aren't supported. Detail information of assembler will be added in near future.
See CHANGELOG.md.