• Global variables
    Keil MicroVision is new to me and I cannot get the variables in one function to be global because there is no "PUBLIC" command. How do I make it so a variable can be changed by any function. BTW I'm...
  • Potential Problems in Using Global Register Coloring
    Dear All, I'm thinking about using global register coloring option but can't be sure of what potential problems might come up after implementing it. I'm using C251 compiler for SLE70 family...
  • Crash for global array when assign variable to varaible
    i'm doing file explore using fatfs and i declare path string as a char array on top of file explorer file.c problem when i add some code which is not belong to any thing just as test and that code contain...
  • Assign variables to specified registers for inline asm???
    Hi, I want to assign variables of a C file to specified registers for indirect addressing in assembler. Here is a example: void Function (void) interrupt 0 using 1 { unsigned char i; // at r0 ...
  • assigning function parameters to registers
    I have code (borrowed from another platform )that attempts to optimize by using assembly code. The function is an addition of arrays and is a C function such as uint32_t AddNumbers ( uint32_t *p_addResult...