This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Atmel T89C51RB2

How to initialize the T89C51RB2 ?
Does anyone as C source for that ?

Thank's for advance...

Parents
  • Is it the only way to process ?
    nope, but if you use #pragma
    1) you need to do .src and then assemble
    2) your debugger source will be the assemblerfor the entire C module

    By keeping the asm code separate
    1) you just compile one and assemble the other of the 2 modules (simple)
    2) your debugger source will be the C

    Either way works, you pick

    Erik

Reply
  • Is it the only way to process ?
    nope, but if you use #pragma
    1) you need to do .src and then assemble
    2) your debugger source will be the assemblerfor the entire C module

    By keeping the asm code separate
    1) you just compile one and assemble the other of the 2 modules (simple)
    2) your debugger source will be the C

    Either way works, you pick

    Erik

Children