4 !!LICENCE!! Public Domain
10 typedef signed int TypA[3];
17 int main(int argc, char* argv[])
20 APtr=&(Bs[7].Data[1]);
21 printf("Hallo Welt! %i = %i \n",Bs[7].Data[1][2], (*APtr)[2] );
27 test.c(20): Error: Incompatible pointer types
28 for APtr=&(Bs[7].Data[1]);
30 My experience in C is very limited, but as this works both in MSVC and
31 the 8 bit Z80 compiler i originally used, i guess its an bug in CC65.
33 As a workaround, an typecast via APtr=(TypA*)&(Bs[7].Data[1]);