Update README.md

This commit is contained in:
Jason
2025-12-08 20:39:08 +11:00
committed by GitHub
parent cc3982442e
commit d3bdcd8ebe
+2 -2
View File
@@ -68,9 +68,9 @@ PRINT "Returned value in R0 was 42"
```asm ```asm
.syntax unified .syntax unified
.thumb .thumb
.global main .global simple
main: simple:
movs r0, #42 @ Load immediate value 42 into register R0 movs r0, #42 @ Load immediate value 42 into register R0
bx lr @ Return from subroutine bx lr @ Return from subroutine
``` ```