This commit is contained in:
2025-04-09 08:55:55 +02:00
parent b9c451e95c
commit 9d4e1a79f5
24 changed files with 499 additions and 11 deletions

View File

@@ -0,0 +1,24 @@
.equ SYS_EXIT, 93
.data
int:.quad 0x11223344aabbccdd
int32:.word 0x887766ee
.text
.globl _start
_start:
adr x1,int
ldr x0,[x1]
adr x1,int32
ldr w0,[x1]
sxtw x1,w0
mov w8,#SYS_EXIT
mov x0,#0
svc #0
.end