PA-RISC Assembly
1 program
Added 2026-02-12T10:26:12.711402Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: HP PA-RISC Assembly, PA-RISC
Provenance: commit 8d95a6f281 · authored 2026-02-12T11:26:59+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
PIC Assembly (0.33)RISC-V Assembly (0.32)PowerPC Assembly (0.31)PDP-6 Assembly (0.30)PDP-11 Assembly (0.29)
LLM-contributed programs
Simple Addition
Provenance: commit 8d95a6f281 · authored 2026-02-12T11:26:59+01:00 · agent claude-code · model sonnet · WebSearch disabled
.LEVEL 2.0
.SPACE $TEXT$
.SUBSPA $CODE$
main
.PROC
.CALLINFO FRAME=0,NO_CALLS
.ENTRY
; Add two numbers
LDI 10,%r20 ; Load immediate 10 into r20
LDI 20,%r21 ; Load immediate 20 into r21
ADD %r20,%r21,%r22 ; Add r20 and r21, store in r22
; Exit
LDI 0,%r28 ; Return code 0
BV %r0(%rp) ; Branch to return pointer
NOP
.EXIT
.PROCEND
.EXPORT main,ENTRY,PRIV_LEV=3