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
  • "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"


    3). You will lose all symbolic information for the module - so you won't be able to use the Browser for it;

    4). The module will always be re-translated on every build - whether it needs it or not;

    5) You may lose some of the higher optimisations? (not so sure about this one).

Reply
  • "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"


    3). You will lose all symbolic information for the module - so you won't be able to use the Browser for it;

    4). The module will always be re-translated on every build - whether it needs it or not;

    5) You may lose some of the higher optimisations? (not so sure about this one).

Children