aboutsummaryrefslogtreecommitdiffhomepage
path: root/arch/armv7.html
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2024-02-15 23:29:57 +0000
committerjohannst <johannst@users.noreply.github.com>2024-02-15 23:29:57 +0000
commitbac8a5d2822835cf47175d1162030653fadd5c09 (patch)
tree28f312a114cf95ac799daac2a2caec4b8612d84d /arch/armv7.html
parentbfc5ce4bc01e5eb28969eefcc01ecfefa2601fdf (diff)
downloadnotes-bac8a5d2822835cf47175d1162030653fadd5c09.tar.gz
notes-bac8a5d2822835cf47175d1162030653fadd5c09.zip
deploy: 4485708c972815bbb6df7f5a228683aa855d553d
Diffstat (limited to 'arch/armv7.html')
-rw-r--r--arch/armv7.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/armv7.html b/arch/armv7.html
index eeecc8b..0ecd684 100644
--- a/arch/armv7.html
+++ b/arch/armv7.html
@@ -361,7 +361,7 @@ mov fp, sp // FP points to frame record
.arch armv7-a
- .section .text, &quot;ax&quot;
+ .section .text, "ax"
.balign 4
// Emit `arm` instructions, same as `.arm` directive.
@@ -390,9 +390,9 @@ _do_greet:
bx lr
.balign 8 // align data on 8byte boundary
- .section .rodata, &quot;a&quot;
+ .section .rodata, "a"
greeting:
- .asciz &quot;Hi ASM-World!\n&quot;
+ .asciz "Hi ASM-World!\n"
greeting_len:
.int .-greeting
</code></pre>