💾 Archived View for home.tobot.dev › cgi › hello_s.s captured on 2022-03-01 at 15:13:18.

View Raw

More Information

-=-=-=-=-=-=-

.text
.global _start
_start:
 mov r0, #1
 ldr r1, =content
 ldr r2, =contentLen
 mov r7, #4
 swi 0

 mov r0, #0
 mov r7, #1
 swi 0

.data
content:
 .asciz "20 text/gemini\r\n# Hello, ASM!\r\nThis page was generated from ARM Assembly"
contentLen=.-content