• User functions/uVision3
    Ok, let's go about this a different way. Here is a stripped-down version of a much more complex C program, running on a Si Labs C8051F046: > > /* * * * * * * * */ > /* BEGIN t1.c */ > /* * * * * * ...
  • User functions/uVision3
    Ok, let's go about this a different way. Here is a stripped-down version of a much more complex C program, running on a Si Labs C8051F046: > > /* * * * * * * * */ > /* BEGIN t1.c */ > /* * * * * * ...
  • User-defined function in uVision5
    Hi everyone, I have an assembly code that I want to run in uVision4. The .a51 code is as follows: MOV A, #002H MOV R0, #040H MOV 040H, #001H XCH A, @R0 MOV R0, #050H MOV 050H, #0F0H...
  • User-defined function in uVision5
    Hi everyone, I have an assembly code that I want to run in uVision4. The .a51 code is as follows: MOV A, #002H MOV R0, #040H MOV 040H, #001H XCH A, @R0 MOV R0, #050H MOV 050H, #0F0H...
  • SPECIFY EXACT LOCATION FOR C51 USER DEFINED FUNCTIONS
    HELLO all, Can we Sepecify exact location to our own defined functions. for example void function() _at_ c:0x5000; void main() { ... ... } void function() { ... ... }