• Functions with multiple long params
    I've created a little test program that runs fine in the simulator, but causes the hardware (80C390) to reset when a function with multiple long parameters is called. This is with v6.22. Am I missing...
  • Passing Params when using RTX
    I am running into an issue that when I pass parameters to a function from a task, the variable is not accessible and the data turns out to be zero. I have tried to make the params pointers to the...
  • Probs using C params with inline assembly
    Is there a method for using inline assembly AND the variables passed to it? I understand the requirement for using SRC, but it makes things a wee bit unmaintainable. For example: void test(char...
  • Realview: Long Long types
    I am trying to port some code over to a LPC2378 ARM-7 MCU that makes use of "long long" variables. I have not been getting any compiler errors over variables being declared as "long long" but when I...
  • ARM7 printf long long int
    Hi, my program does not do the expected things, printf a unsigned long long int. #include <aduc7026.h> #include"stdio.h" void RS232_init(void); int main (void) { unsigned long long int A; RS232_init...