added all example programs

This commit is contained in:
black
2025-07-09 22:42:51 +02:00
parent 03207c13db
commit 35b434ec77
10 changed files with 77 additions and 1 deletions

6
beispielprogramme/3.txt Normal file
View File

@@ -0,0 +1,6 @@
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