• my function keeps returning the wrong value
    TbooleanVALUE showNUMBER ( int number ) { switch (number) { case 0: printf("0"); break; case 1: printf("1"); break; case 2: printf("2"); break; case 3: printf("3"); break; case 4: printf("4");...
  • my function keeps returning the wrong value
    TbooleanVALUE showNUMBER ( int number ) { switch (number) { case 0: printf("0"); break; case 1: printf("1"); break; case 2: printf("2"); break; case 3: printf("3"); break; case 4: printf("4");...
  • Wrong DPTR value
    Dear Sirs, The C code in my project is: TaskStruct xdata * data pTask; data unsigned char Task; ... *pTask->ProcID=Task; causes the assembly code MOV A,pTask+1 ADD A,#06 LCALL 4629...
  • Wrong DPTR value
    Dear Sirs, The C code in my project is: TaskStruct xdata * data pTask; data unsigned char Task; ... *pTask->ProcID=Task; causes the assembly code MOV A,pTask+1 ADD A,#06 LCALL 4629...
  • Getting data in and out of uVision2
    Hello, I was just wondering how to go about getting data into and out of a project I'm debugging using the uVision2 debugger. The program will compress a 2.6Mb large picture, and I've tried to convert...