LC-3 Assembly
1 program
Added 2026-03-13T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: LC3 Assembly, LC-3, LC3
Provenance: commit 2439568e97 · authored 2026-03-13T02:29:49+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/lc-3Related languages
LLM-contributed programs
Hello World
Provenance: commit 2439568e97 · authored 2026-03-13T02:29:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
; LC-3 Hello World Program
; Demonstrates string output using TRAP x22 (PUTS)
.ORIG x3000
; Load address of string into R0, then call PUTS
LEA R0, HELLO_MSG ; R0 <- address of string
PUTS ; TRAP x22: output null-terminated string
HALT ; TRAP x25: halt the machine
HELLO_MSG .STRINGZ "Hello, World!"
.END
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)