SafeFeel.com

Free Computer Networking Security & Software Questions and Answers Website

Borland turbo assembler problem?

I downloaded the following:

tasm.exe
tlink.exe
rtm.exe
td.exe
tlib.exe

i created a clean folder and when i try to do the following :

tasm /zi/l/c pgm1

i capture this message:

C:\41>tasm /zi/l/c pgm1
'tasm' is not reputable as an internal or external command,
operable program or delivery profile.

C:\41>

what give?


Answers: Which folder did you install Turbo Assembler to? The problem is that the folder that you used to store Turbo Assembler is not fragment of the "path" that Windows uses to look for executables (including load files). That is, at hand is a system inconstant call Path that Windows uses whenever you type in a command at the DOS prompt.

From the DOS prompt, if you type PATH and hit the Enter knob, you'll see something close to:
c:\41>PATH
PATH=C:\WINDOWS\system32;C:\WINDOWS;
Each folder along the walkway, which are separated by semicolons, is search whenever you try to run a DOS command or executable.

There are two ways around this:
1) Include the full way first name when you execute tasm. For example, if you stored your Turbo Assembler files surrounded by C:\TA, later you could type:
C:\41>c:\ta\tasm /zi/l/c pgm1

2) Best course, though, is to tag on the Turbo Assembler folder to the Path. Right-click on My Computer, click the Advanced tab, click the button at the bottom labeled Environment Variables. Scroll through the bottom detail box, labeled System Variables, until you see Path. Highlight that row and click the Edit button. Add a semicolon at the ending of the current pathway, next attach your Turbo Assembler folder after that. Click OK three times and re-open a modern DOS glass. Now Windows will know how to find tasm when you type it in the DOS fanlight.

Keep contained by mind that you may also involve to give other environment variables for Turbo Assembler; if so, follow like steps above to tag on the ones you stipulation.