Content originally posted in LPCWare by cwpjr on Thu Aug 15 12:45:51 MST 2013
.data is supposed to be uninitialized, Right?
.bss // is supposed to be initialized to zero, right?
.word 1 // .word in .bss section requires but ignores the argument of 1. .word 2 is still 1 word.
.data also changes .word
.word 1 // requires argument and initializes this word to 1.
.space 4 // allocates word but initializes it to zero.
So where does the doc show how to define data that is not initialized?