SMAL
1 program
Added 2026-02-12T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Simple Machine Assembly Language
Provenance: commit f3acbafd80 · authored 2026-02-12T14:07:29+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
Hello World
Provenance: commit f3acbafd80 · authored 2026-02-12T14:07:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
TITLE 'HELLO WORLD PROGRAM'
START BEGIN
*
* HELLO WORLD IN SMAL
*
BEGIN LA,A1 MSG Load address of message
LA,A2 80 Load length
ER WRITE Write to output
J EXIT Jump to exit
*
MSG + 'HELLO, WORLD!'
*
WRITE PROCEDURE
* Write routine would go here
RETURN
ENDPROC
*
EXIT HALT
END BEGIN