??? 02/26/07 23:48 Read: times |
#133761 - You need to understand Responding to: ???'s previous message |
David Gal said:
I just want one file of equates/memory reservations You need to understand that equates and memory reservations (code & data) are quite different things: Equates are purely textual, source code things - it doesn't matter if every single source file equates a symbol called "FRED" with the value 3. So it's easy to have a single "equates" file that is included by everything else in your project. Memory reservation is different - you can only have 1 public definition of any symbol, but every other file that references that symbol needs an external declaration of it. See my original post: http://www.8052.com/forum/read.phtml?id=133691 |