Have some problem with linking dos programs from RadAsm
First of all, i had problem with doslnk.exe. I've found it hardly. But when i try to link my obj file from RadAsm it writes error "file not found"... of course he can't find it, because doslnk.exe in D:/masm32/bin and prog16.obj is in D:/radasm/masm/projects/prog16/... how can i resolve this problem ?
I tryed to add $P to show the path were my obj file is:
0,O,$B\doslnk.exe /NOLOGO,$P,3,"|||||"
but it results
d:\Masm32\Bin\doslnk.exe /NOLOGO "D:\RadASM\Masm\Projects" "doss.obj" "",,,,,""
so i have problem with this "D:\RadASM\Masm\Projects" "doss.obj" coz i need it to be like this "D:\RadASM\Masm\Projects\DOSS\doss.obj"
Hi
You should try:
0,O,$B\doslnk.exe /NOLOGO,3
If that does not work:
0,O,$B\doslnk.exe /NOLOGO "D:\RadASM\Masm\Projects\DOSS\doss.obj"
KetilO