1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
132 B
ArmAsm

.data
e: .byte 'e'
.text
.globl _start
_start:
li a7, 64
la a1, e
li a2, 1
l: li a0, 1
ecall
j l