Arm/declword4

From ASMBits

Declare four consecutive half-words of memory. The four half-words should have the values 'y', 'z', 0x61, and 98, respectively. Also create a label named A that points to the third half-word (0x61). (In other words, there are two half-words before the label A, and two after.)

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

Expected solution length: Around 2 lines.

Sample Input

[No input]

Sample Output

[No output] 

Declarations made consecutively in the code will be consecutive in memory. Each declaration creates an initialized value at the current location of the assembler's output (It's part of the executable, and not similar to malloc().)

Write your solution here

Upload a source file...