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

How to adapt for Keil?

Does anybody know how to adapt C-files composed under TASKING to be used with KEIL? There are some differences in certain operators. It seems that such a soft should exist?
Michael.

Parents
  • I think it isn't a only a copy&paste | crop job :)

    I've used the file provided from TASKING (a1902_02.pdf)

    And more problems running on.

    Like that;
    #pragma romstring
    and
    re arranging the lines like that

    code BYTE *code right_positions[] /*Keil*/
    rom BYTE *rom right_positions[] /*Tasking*/

    OR



    char code* idata menulf_data; /*Keil*/

    rom char *idat menulf_data; /*Tasking*/
    Any Idea?

Reply
  • I think it isn't a only a copy&paste | crop job :)

    I've used the file provided from TASKING (a1902_02.pdf)

    And more problems running on.

    Like that;
    #pragma romstring
    and
    re arranging the lines like that

    code BYTE *code right_positions[] /*Keil*/
    rom BYTE *rom right_positions[] /*Tasking*/

    OR



    char code* idata menulf_data; /*Keil*/

    rom char *idat menulf_data; /*Tasking*/
    Any Idea?

Children