TASM DOS mode

Originally posted by holly
How do I set up RadASM to link my DOS mode programs with TASM
(this wasn't the exact question but it was the jist of the thread)

Answer from cakmak
in Tasm.ini:

1) Add Dos App new section name as below


Type=Win32 App,Dos App <<- add this 2. section name

2) Create this new section. This works for me. Except, for linker output option, it must choice Console (not Output). So in 3 and 13 lines, these are "C" beside "O". So you have to close linker DOS box after finish, via Ctrl+C keys.

after [Win32 App] section add this "new" section;

[Dos App]
Files=1,1,0,0,0
Folders=1,0,0
MenuMake=0,1,1,1,1,1,0,0
;x=FileToDelete/CheckExistsOnExit,
;(O)utput/(C)onsole/0,Command,
;MakeFile1[,MakeFile2[,MakeFile3...]]
1=4,O,$B.exe -r -i"$I" -v,1
2=3,O,$B.EXE /I"$I",2
3=5,C,$B.EXE /L"$L",3 <<---notice "C", this means console output. Very important!
4=0,0,,5
5=
6=*.obj,O,$B.EXE /I"$I",*.asm
11=4,OT,$B.exe -r -i"$I" -v,1
12=3,OT,$B.EXE /I"$I",2
13=5,C,$B.EXE /L"$L",3 <<---- Also here "C". Else RadAsm crashes.
14=0,0,,5
15=
16=*.obj,O,$B.EXE /I"$I",*.asm