Arm/declstring

From ASMBits

Declare a string at the label Hello: "This is a string"

This problem only checks for the declaration. There is no code.

ARMv7 quirk: Declare the string in the .data section. The assembler seems to truncate the .text section to a multiple of 4 bytes in length, causing the final few bytes of the program to disappear, if the total length of the .text section isn't a multiple of 4.

Expected solution length: Around 2 lines.

Sample Input

[No input]

Sample Output

[No output] 

Strings are null-terminated. This is usually handled for you (depending on which directive you use to create the string).)

Write your solution here

Upload a source file...