• bad structure declaration?
    i'm trying to create an array of structures but when i make more than a handful my robot doesn't work. so in main.h i have typedef struct SPid { int dState; // Last position input int iState;...
  • bad structure declaration?
    i'm trying to create an array of structures but when i make more than a handful my robot doesn't work. so in main.h i have typedef struct SPid { int dState; // Last position input int iState;...
  • How to declare a structure?
    I define an area of memory that in 'non-volatile' so it doesn't get cleared on powerup. I do this is a module called memmap.asm like this: MyData DS 512 ;Located at 0x801C In another module, I want...
  • How to declare a structure?
    I define an area of memory that in 'non-volatile' so it doesn't get cleared on powerup. I do this is a module called memmap.asm like this: MyData DS 512 ;Located at 0x801C In another module, I want...
  • symbol declaration, for an C structure element
    If we define struct _footype { char c; int x; } foo; foo would be a linkable symbol, being th aderess of real memory - of sizeof(struct _footype) What can I do to declare a linkable symbol...