Keil arm startup.s assembly code -


i trying understand keil startup assembly code because initializes minimal hardware work c language. stuck @ line:

 if      pll_setup <> 0 

what meaning of above line? specifically, <> symbol? please me figure out assembly instruction.

this line not assembly per se control directive. <> means "not equal". so, if preprocessor symbol pll_setup not 0, following block (until else or endif) passed assembler, otherwise it's skipped.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -