• different port manipulation in one function
    Hi : Take a look at this function sbit a=P0^1; void manipulate_port() { a=1; Delay(); a=0; Delay(); a=1; Delay(); a=0; } In above code, the hardware(P0.1) is manipulated in the...
  • Array and Long manipulations 2
    Hi everyone, Regarding to my previous post: http://www.keil.com/forum/docs/thread4443.asp I manage to write a code to suits my needs, the code more likely like this: command[9] = {0x3C...
  • Array and Long manipulations
    Hi everyone, I have an array eg: command[9] = {0x3C , 0x4A , 0x33 , 0x25 , 0xB1 , 0xD3 , 0x59 , 0x34 , 0x2E } the last 4 byte is the value (in hex) that I need to manipulate, let say increment...
  • Accessing and manipulating external variable
    hai all, i am doing small programs for how do we accessing and manipulating external variable data from assembler file(A51 file). i have declared one external variable in another file like extern...
  • Manipulating Standard Libraries (C51S.LIB)
    So I want to replace a standard function in the C51S library. Shouldn't be too hard, right? I rewrote the function (?C?LMUL to be specific) in assembly and compiled it using the A51 assembler. (processes...