• C167 barebones assembler setup
    I feel so stupid asking this question, but I am trying to assemble just a few lines of relocatable C167 code that I will manually patch into an existing engine control unit. I've done this before with...
  • String functions in relocatable code, string is fixed in memory
    I have the following code: strcat(tbuf,"\r\nSH B = "); My program memory model is small so I can re-locate the code in any sector. Unfortunately "\r\nSH B = " is fixed at an absolute address. I can...
  • string functions for xhuge data
    I need string functions which are operating on xhuge data. Has anyone code for: xstrcpy xstrcmp xstrncpy xstrncmp Any help is apprecciated
  • adding two string
    hi i just wanna know how to add two strings together? ll anybody help me?
  • Define strings as unsigned
    Hello, I'm using a graphical Display and have a printf() Function which expects an unsigned char pointer: void LCD_DrawString(unsigned char* s); using LCD_DrawString("Hello World"); generates a...