π₯οΈWelcome
My Journey into Embedded Software Programming
Welcome
.global _start
_start:
MOV R0, #1 /* file descriptor: stdout */
LDR R1, =hello_str /* pointer to the message */
MOV R2, #13 /* message length */
MOV R7, #4 /* system call number: SYS_write */
SVC 0 /* invoke syscall */
MOV R0, #0 /* return code 0 */
MOV R7, #1 /* system call number: SYS_exit */
SVC 0 /* invoke syscall */
hello_str:
.ASCII "Hello, World!\0"Software Engineering Code Of Ethics
Last updated