6502 Assembly
1 program
Added 2026-02-10T11:24:26.188759Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: MOS 6502 Assembly, 6502 assembler
Provenance: commit 5914ab0b4f · authored 2026-02-10T12:25:02+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
LLM-contributed programs
Add Two Numbers
Provenance: commit 5914ab0b4f · authored 2026-02-10T12:25:02+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Simple 6502 Assembly program
; Adds two numbers and stores result
LDA #$05 ; Load accumulator with 5
CLC ; Clear carry flag
ADC #$03 ; Add 3 to accumulator
STA $0200 ; Store result at memory location $0200
BRK ; Break (end program)