avra icon indicating copy to clipboard operation
avra copied to clipboard

Assembler for the Atmel AVR microcontroller family

Results 34 avra issues
Sort by recently updated
recently updated
newest added

`.define m8535def.inc` There's the file for the ATmega8535 but there's no support fot it at listing devices: ``` $ avra --devices | grep ATmega85 ATmega8515 | 8192 | 0x0060 |...

The better diagnostics in GCC 12 prints some new warnings when compiling `macro.c`, see bellow. ```` cc -Wall -O3 -DDEFAULT_INCLUDE_PATH='"/usr/local/include/avr"' -DVERSION='"1.4.2"' -c -o macro.o macro.c macro.c: In function ‘read_macro’: macro.c:196:36:...

- fix 3 warnings from builds on Fedora with GCC 11 - allow compilation with user supplied CFLAGS

Hi, Encouraged by similar request #34 I decided to add a new issue. I'm looking forward to create a new design using attiny204 (alas, nothing else is left on Mouser!)....

Hi, In projects with a lot of labels, I get an unexpected error: core5277/./core/ram/_ram_find_used_block_mt.inc(42) : Error : Branch out of range (-64

If I include the `m328pdef.inc` file in my source, and compile with `avra`. I get the following warnings. ``` AVRA: advanced AVR macro assembler (version 1.4.2) Pass 1... Pass 2......

Hello, I seem to have run into a problem trying to create a macro that uses `.elseif` The code below fails with: `broken.asm(14) : Error : [Macro: broken.asm: 8:] Found...

Hey there, after suffering from a severe case of NIH I've decided to write some assembly for the ATtiny1614: https://www.microchip.com/wwwproducts/en/ATTINY1614 It's not directly listed in avra's devices list, if I...

I remember that `avrasm32` does not produce debug file and EEPROM file if `d` and `e` option are not provided. However, `avra` produce both files by default even though I...

Hello. I need to use `.undef` , but it just does not have any effect. How to reproduce: Try to translate three-lines asm code: ``` .define test .undef test .define...