• extern type in 'C' and PUBLIC type in asm mismatch
    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; and the assembly...
  • extern type in 'C' and PUBLIC type in asm mismatch
    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; and the assembly...
  • C51 doesn't catch mspace mismatch (warning 259)
    Hi all, according to Keil's C51 documentation the compiler should output a warning 259 when pointers to different memory spaces are intermixed. In a current project I painfully recognized that this...
  • C51 doesn't catch mspace mismatch (warning 259)
    Hi all, according to Keil's C51 documentation the compiler should output a warning 259 when pointers to different memory spaces are intermixed. In a current project I painfully recognized that this...
  • why get error "Type mismatch (arg. no. 1) (ptrs to signed/unsigned)"?
    ------------------------------------------- #define uchar unsigned char uchar xdata lcd_show_buf[20]; uchar num; num = 2; sprintf(lcd_show_buf, "%4d", num); ----------------------------...