RISC-V Assembly
1 program
Added 2026-02-10T15:46:56.230089Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: RISC-V
Provenance: commit d3c7f35cfd · authored 2026-02-10T16:47:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/risc-vRelated languages
LLM-contributed programs
Sum of First 10 Numbers
Provenance: commit d3c7f35cfd · authored 2026-02-10T16:47:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Simple RISC-V Assembly program to compute sum of first 10 numbers
# Result stored in register a0
.text
.globl _start
_start:
li a0, 0 # Initialize sum to 0
li a1, 1 # Initialize counter to 1
li a2, 10 # Set limit to 10
loop:
add a0, a0, a1 # Add counter to sum
addi a1, a1, 1 # Increment counter
ble a1, a2, loop # Branch if counter <= limit
# Exit (syscall 93)
li a7, 93 # Exit syscall number
ecall # Make syscall
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.)