• DPP, NCONST, near, PEC
    Hi all, (C167; running everything from RAM, copied from flash in the startup-file and then re-mapping the BUSCON's) Does anybody have a suggestion on how to put DATA in one continuous memory area...
  • about NCONST
    In C251, printf ("\nStart Measurement Recording\n"); after compiling, the const "\nStart Measurement Recording\n" is located at address above 0x8000, but my mcu's data ram is less than 0x8000, what...
  • Default Linker Control String - NCONST
    I have a problem getting my project to link. I had to create a linker file, changing the NCONST class from :- NCONST (0xC04000-0xC07FFF), to NCONST (0xC10000-0xC13FFF), Just to get the project...
  • DPP, near, NCONST, NDATA, speed, DPPUSE directive
    Hi all, Could somebody please point me to a DPP-registers-for-dummies resource? I have read the application notes and datasheets etc. but they only mention that DPP registers -exist-. I'm still not...
  • Two different functions but with the same name in separate libraries
    I have two libraries, named a.lib and b.lib. Both libraries have a function char test(void), but return different characters. a.c (a.lib) char test(void); char test(void) { return 'a'; } b.c (b...