Load ELF into emulator

This commit is contained in:
2024-05-12 00:33:10 +02:00
parent 1f48837af8
commit 7642349be9
4 changed files with 172 additions and 1 deletions

9
main.asm Normal file
View File

@ -0,0 +1,9 @@
.section .text
.global _main
_main:
li x1, 5
addi x2, x1, 45
loop:
addi x2, x2, 1
j loop