This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

$include?

if i have configuration:
...
VAR: DS 1
...

and,i include it in one .asm file
$include (confi.inc)
when i assemble them,
msg show: Program Size: data=30.0 xdata=0 code=101

and,i include it in another .asm file
$include (confi.inc)

when i assemble them,
msg show: Program Size: data=38.0 xdata=0 code=101

How did it happen? Why dit it double the data memory?