Good Morning,

I'm pruning some dead wood from my code and so I happened across this
this situation:


In the .h file I've got:


extern volatile stepperState __at( 0x0600 ) steppers[];



and in the  .c file:


volatile stepperState __at( 0x0600 ) steppers[NUM_OF_MOTORS];


the arrays/variable 'steppers' is no longer used anywhere
and that is when I get the following error from the
assembler:

../obj/stepperirq.asm:19:Error[113]   Symbol not previously defined
(_queues)

however if I touch the array like this, then everything compiles fine:

steppers[0].afield = 0;


I guess this is a bug?


br Kusti


This e-mail may contain confidential or privileged information. If you are not 
the intended recipient (or have received this e-mail in error) please notify 
the sender immediately and destroy this e-mail. Any unauthorized copying, 
disclosure or distribution of the material in this e-mail is strictly 
forbidden. We will not be liable for direct, indirect, special or consequential 
damages arising from alteration of the contents of this message by a third 
party or as a result of any virus being passed on or as of transmission of this 
e-mail in general.

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to