> i think your wrong there anarko, any question about C in here is fine with
> me, even programming questions, as long as the main focus is gba dev!, i
> think questions about the compiler specific gcc compiler for the gba are
> completely on topic and should be discussed, after all, other people here
> might come up againt the same problems and not have any answers!
The question I asked was SPECIFIC to the ARM IMPLEMENTATION of gcc, gas, and
ld for the GBA.
Now to clarify.....
Apparently there are issues declaring local instances of structures.
Example:
typedef struct
{
int stuff,it;
}CRAP;
void bar()
{
CRAP mycrap; /* mycrap is a bad address...why? */
mycrap.stuff = 3; /*can't do this because mycrap is BAD*/
/*.....other code*/
};
I would consider this a legitimate issue :).
Just Me,
*SF