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

4
beispielprogramme/2.txt Normal file
View File

@@ -0,0 +1,4 @@
addi x1, x0, 42 # x1 = 42
addi x2, x0, 100 # x2 = Ad res se 100
sw x1, 0(x2) # Speicher[100] = 42
lw x3, 0(x2) # x3 = Speicher[100] > 42