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

Popular posts from this blog

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -