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-v
LLM (this repo) · 1Pldb

Related languages

PA-RISC Assembly (0.32)DLX (0.32)TX-2 Assembly (0.32)PDP-6 Assembly (0.31)PDP-11 Assembly (0.30)

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
code.s · added: 2026-02-10T15:46:56.230089Z
# 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.)

Contribute — propose a file extension

Tell us where to find evidence about RISC-V Assembly (mapped to pl/risc-v). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/RISC-V Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← RISC OS BASIC RiscLua →