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

*.asm *.? uVision2

I can't seem to make files other than *.a51, *.c to highlight comments and what not.
Instead files such as *.asm are just solid black and white.
I told the program it was an assembly file but it still displays it in black and white.
Is there a way to make the uVision2 display different files extensions with colors?

Parents
  • If you look in the .opt file for a uVision2 Project, you will see:

    ### uVision2 Project, (C) Keil Software
    ### Do not modify !

    cExt (*.c)
    aExt (*.a*; *.src)
    oExt (*.obj)
    lExt (*.lib)
    tExt (*.txt)
    pExt (*.plm)

    You may wish to take your life in your own hands, ignore the "Do Not Modify!" exhortation and try adding "; *.a51" within the parentheses for "aExt"

    If course, I'm just guessing here; I give *no* guarantee that this will not mess you up totally - let alone work!
    However, AT YOUR OWN RISK, it might be worth looking into.

    OR: you could just call your files ".a" or ".src" instead! ;-)

Reply
  • If you look in the .opt file for a uVision2 Project, you will see:

    ### uVision2 Project, (C) Keil Software
    ### Do not modify !

    cExt (*.c)
    aExt (*.a*; *.src)
    oExt (*.obj)
    lExt (*.lib)
    tExt (*.txt)
    pExt (*.plm)

    You may wish to take your life in your own hands, ignore the "Do Not Modify!" exhortation and try adding "; *.a51" within the parentheses for "aExt"

    If course, I'm just guessing here; I give *no* guarantee that this will not mess you up totally - let alone work!
    However, AT YOUR OWN RISK, it might be worth looking into.

    OR: you could just call your files ".a" or ".src" instead! ;-)

Children
No data