compiler cannot find tasm...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • system55
    New Member
    • Aug 2006
    • 25

    compiler cannot find tasm...

    Just want to ask why the file that I found from this site
    http://www.geocities.c om/SiliconValley/2151/realmem.html
    When I compile it using a turbo c++ by borland it can't compile because it cannot find the tasm. What do you think is the problem??

    Have a nice day...
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    The code you have has some asm statements. These are not part of standard C (I think) but an extension. Bordand handles this by calling the Turbo ASseMbler (tasm) to compile the asm lines.

    Clearly you either do not have tasm on your machine or do not have it in the Path.


    Additionally the bt of code you are using is very out of date. It is refering back to the days of 16 bit programming before Win 95.

    Comment

    • system55
      New Member
      • Aug 2006
      • 25

      #3
      Are there sites where I can download the turbo assembler?

      By the way I also saw a project wherein it included some assembly codes, but it is compiled and never ask for a tasm...

      Thanks for the respond....

      Comment

      • system55
        New Member
        • Aug 2006
        • 25

        #4
        Just downloaded the tasm.exe, and I modified the path of the turbo assembler under the options menu and transfer submenu. But after modifying it, it does not try to find the tasm.exe but another message appears "cannot find filter tasm2msg". What might be the problem? when I take a look inside the bin folder, the tasm2msg.exe is present.

        hope you can help me again...

        have a nice day

        Comment

        • Eipifi
          New Member
          • Mar 2012
          • 1

          #5
          Originally posted by system55
          Just downloaded the tasm.exe, and I modified the path of the turbo assembler under the options menu and transfer submenu. But after modifying it, it does not try to find the tasm.exe but another message appears "cannot find filter tasm2msg". What might be the problem? when I take a look inside the bin folder, the tasm2msg.exe is present.

          hope you can help me again...

          have a nice day

          It's been 6 years since the problem was posted. Just found a workaround :)

          To avoid the error, copy the TASM2MSG.EXE file to two locations:

          1. The folder where your .c file is stored
          2. The folder one level up from bin

          Works for me.

          Comment

          Working...