When something is defined in the BSS section, what are the legal ways to
access it?
For instance,
lea data(PC),a0 ;data is in BSS
creates a relocation error. Is it because I don't need PC since
strictly speaking, data is not in my program, or do I need to use DEREF
macro?
-Senor Suave