Files
riscv-emulator/beispielprogramme/9.txt
2025-07-09 22:42:51 +02:00

9 lines
210 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
addi x1, x0, 21 # x1 = 21
jal x5, double # Aufruf: ra in x5
# nach Rueckkehr enthaelt x6 das Resultat
j end
double:
slli x6, x1, 1 # x6 = x1 << 1 = x1 2
jalr x0, 0(x5) # Ruecksprung ueber r a
end:
# x6 = 42