Well,
I tried it and the code compiles just fine. It seems that the .lst file is fine as well...
However, the .bin file is 48K in size! That would not be loaded by VSS...
Apparently, the .bin file seems to start at $300 (the place I want my variables) and therefore the whole code is shifted in the memory...
The code looks like that:
ORG $300
v_Variable1 DS.B 1
v_Variable2 DS.B 1
...
ORG $4000
l_StartCode:
SEI
...
I was wondering whether I miss a directive to the compiler that indicates that location $300 is DATA and $4000 is code... I know that there are special directives to do that for the 6809...
Any idea?
Thanks,
OldGuru.