Automounting turbo c++ from dos for windows 8

I have just installed turbo for my windows 8.1 x64bit system. I want to automatically start turbo c++ when I start DOSBOX 0.74. The turbo files and dosbox files are all on my f drive.

These are the lines I put into the config file:
1
2
3
4
5
 mount h f:\turboc\
 h:
 cd tc
 cd bin
 tc 


from line 3 onwards dosbox says that it is unable to change to tc, it executes line 4, and finally says that tc is an invalid command with respect to line 5.

I would appreciate it if someone told me what exactly went wrong with what I tried to do, and why.
Last edited on
Either
1
2
3
4
5
mount h f:\turboc\
h:
cd turboc
cd bin
tc


or

1
2
3
4
5
mount h f:\tc\
h:
cd tc
cd bin
tc


I believe the dir your changing into 2with the 'cd; command, must match the directory that exists.
making both turboc didn't work, but making both tc did. Thank you. :)
Topic archived. No new replies allowed.