6809 Assembly

1 program Added 2026-02-11T11:35:11Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Motorola 6809 Assembly
Provenance: commit 8df564d56a · authored 2026-02-11T12:36:14+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

68HC11 Assembly (0.62)M68k Assembly (0.58)Motorola 68000 Assembly (0.58)6800 Assembly (0.54)DLX (0.29)

LLM-contributed programs

Hello World

Provenance: commit 8df564d56a · authored 2026-02-11T12:36:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-11T11:35:11Z
; Hello World program for Motorola 6809
; Outputs "Hello, World!" to console

        ORG     $0100           ; Program starts at $0100

START   LDX     #MESSAGE        ; Load X with address of message
LOOP    LDA     ,X+             ; Load A with byte at X, increment X
        BEQ     DONE            ; If zero, we're done
        JSR     PUTCHAR         ; Output character
        BRA     LOOP            ; Continue loop
DONE    RTS                     ; Return to operating system

MESSAGE FCC     "Hello, World!"
        FCB     $0D,$0A,$00     ; CR, LF, null terminator

PUTCHAR EQU     $A000           ; Character output routine address
        END     START

Contribute — propose a file extension

Tell us where to find evidence about 6809 Assembly (mapped to pl/6809_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/6809 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← 6800 Assembly 68HC11 Assembly →