Anyone seen this one? I have a data structure in assembly (bit-mapped font) that I want to reference in C. The 'C' code looks like this:
extern code unsigned char *FONT1;
NAME FONT1 ?CO?FONT1 SEGMENT CODE PUBLIC FONT1 RSEG ?CO?FONT1 FONT1: ... END
What happens when you try this?
extern code unsigned char FONT1 [];
same problem... I've tried several different types in the 'C' code. thanks!
Is there any problem with "FONT1" being a module name, a segment name, and an address name all at the same time?
View all questions in Keil forum