TMS320 Assembly
1 program
Added 2026-02-13T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: TMS320, TMS320 ASM
Provenance: commit c18d733671 · authored 2026-02-13T12:12:40+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
TX-0 Assembly (0.43)MSP430 Assembly (0.41)MIPS Assembly (0.38)SPARC Assembly (0.37)PIC Assembly (0.35)
LLM-contributed programs
Simple Addition
Provenance: commit c18d733671 · authored 2026-02-13T12:12:40+01:00 · agent claude-code · model sonnet · WebSearch disabled
.title "Simple Addition Example"
.text
start:
; Load first value into accumulator
LD #100, A
; Add second value
ADD #50, A
; Store result
STL A, result
; Halt
B start
.data
result: .word 0
.end