6800 Assembly
1 program
Added 2026-02-11T11:40:51Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Motorola 6800 Assembly, 6800 Assembly Language
Provenance: commit f078bf9c1d · authored 2026-02-11T12:41:24+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
M68k Assembly (0.56)Motorola 68000 Assembly (0.56)6809 Assembly (0.54)68HC11 Assembly (0.44)Assembly Language (0.41)
LLM-contributed programs
Hello World
Provenance: commit f078bf9c1d · authored 2026-02-11T12:41:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
ORG $0100
START LDX #MSG Load address of message
LOOP LDAA 0,X Load character
BEQ DONE If zero, we're done
JSR $E1D1 Call MIKBUG OUTCH routine
INX Next character
BRA LOOP Continue loop
DONE SWI Return to monitor
MSG FCC "Hello, World!"
FCB $0D,$0A Carriage return, line feed
FCB $00 Null terminator