AVR Assembly

1 program Added 2026-02-10T15:54:21Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: AVR ASM, AVR Assembler
Provenance: commit 6d85b2a60a · authored 2026-02-10T16:54:58+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

MPASM (0.44)FASM (0.40)IBM 709 Assembly (0.39)PDP-9 Assembly (0.39)TASM (0.39)

LLM-contributed programs

LED Blink ATmega328P

Provenance: commit 6d85b2a60a · authored 2026-02-10T16:54:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · license: LGPL-2.1 · added: 2026-02-10T15:54:30Z
; LED Blink for ATmega328P
; Blinks LED on PB5 (Arduino pin 13)

.include "m328pdef.inc"

.org 0x0000
    rjmp reset

reset:
    ; Set PB5 as output
    ldi r16, 0b00100000
    out DDRB, r16

main_loop:
    ; Turn LED on
    sbi PORTB, 5
    rcall delay
    
    ; Turn LED off
    cbi PORTB, 5
    rcall delay
    
    rjmp main_loop

delay:
    ; Simple delay loop
    ldi r18, 41
outer:
    ldi r19, 0
middle:
    ldi r20, 0
inner:
    dec r20
    brne inner
    dec r19
    brne middle
    dec r18
    brne outer
    ret

Contribute — propose a file extension

Tell us where to find evidence about AVR Assembly (mapped to pl/avr_assembly). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/AVR Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← avr avro →