iarm icon indicating copy to clipboard operation
iarm copied to clipboard

Cannot use DCD directive with more than one word

Open ARamsey118 opened this issue 8 years ago • 1 comments

For example ConstData DCD 0x0000000A, 0x0000000B, 0x00000010, 10 will give a warning saying iarm/arm_instructions/directives.py:107: UserWarning: Cannot reserve constant words; 0x0000000A, 0x0000000B, 0x00000010, 10

Moving each to its own line, ie:

ConstData DCD 0x0000000A
MoreData DCD 0x0000000B
;...

will work

ARamsey118 avatar Jul 22 '16 02:07 ARamsey118

Same logic applies to DCH and DCB as well

DeepHorizons avatar Dec 19 '16 17:12 DeepHorizons