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

6 lines
174 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, 7 # x1 = 7
addi x2, x0, 7 # x2 = 7
beq x1, x2, equal # springe nach equal falls gleich
addi x3, x0, 1 # wird uebersprungen
equal:
addi x3, x0, 99 # x3 = 99