Skip to content

Commit 6f969ce

Browse files
demo: fix typos, grammar, punctuation
1 parent 6ea30b8 commit 6f969ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demo.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ textstart: ld r0, r1, 0 # a comment!
2727
rsh r0, r1, 42
2828
move r0, r1
2929
move r0, 42
30-
move r0, textstart # moves abs addr of textstart to r0
30+
move r0, textstart # Move the absolute address of textstart to r0
3131
move r0, constant42
3232
stage_rst
3333
stage_inc 42
@@ -70,10 +70,10 @@ data1: .space 4, 0x42
7070
data2: .skip 4
7171
dataw: .word 1, 2, 3, 4
7272
datal: .long 1, 2, 3, 4
73-
datab: .byte 1, 2, 3 # test alignment / fill up of section
73+
datab: .byte 1, 2, 3 # Test alignment and fill up the section
7474
dataend:
7575

7676
.bss
7777
bss0: .skip 4
78-
bss1: .skip 2 # test alignment / fill up of section
78+
bss1: .skip 2 # Test alignment and fill up the section
7979
bssend:

0 commit comments

Comments
 (0)