assembly - are constants type declaration case sensitive in HLASM? -
is there difference using lower or uppercase c when declaring constant char ?
field1 dcl c'1' field2 dcl c'1'
code runs if made no difference, see no mention of in documentation.
nope, hlasm case-insensitive. can, of course, have mixed-case literal strings (e.g., c'hello world'
), labels (e.g., field
, field1
) , keywords (e.g. dcl
, dcl
) not case-sensitive.
Comments
Post a Comment