I am taking a course for ARM cortex-M microcontrollers with Assembly Language, and I am trying to figure out how to work with strings in order to complete a problem that asks to convert all characters of a string to uppercase characters, but I am not sure how to approach the problem since I am fairly new to this language. I have attempted the problem by trying to define the string that I want to convert as:
word DCB "Hello world", 0
but I am not sure if this is how strings are defined in this language. Any assistance and explanation for the syntax to be used, what each line of code means, and how to structure the code for this problem would be greatly appreciated!