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
Jon, The only real difference I see in what you have and what I have is the position of the "code" keyword in the 'C' extern statement. I'm not at work right now, so I can't check it out...do you think this is my problem? thanks a bunch! -alex
SO... It turns out that the issue had to do with a bad install of either or both the Keil SW and the Cygnal IDE. I reinstalled both and now its all happy. thanks, ai
The only real difference I see in what you have and what I have is the position of the "code" keyword in the 'C' extern statement. The postition of the code keyword is all important. In this case:
extern unsigned char code font1[];