I'm using DOSBOX for the first time in order to program in Assembly x8086. Premise: I'm using a Mac and I don't have time to build/run a new linux/windows VM. I mounted c through the command mount c /Users/[NameOfTheUSerLogged]/assembly successfully. Inside the assembly file there are two folders: Ng and tasm. I tried to execute the command path=c/Ng;c/tasm in order to use the compiler files that are inside tasm folder and that gave me no error, but when I tried to compile a .asm file I cannot run any file. I'm wondering if it's a problem of the path command on mac. P.S. the command is ass file.asm and ass is a command defined in ass.bat that's inside the tasm folder. The command tasm is defined in this way:
ass.bat
nasm -f obj -g %1.asm
tlink /v %1.obj
I tried to compile with the two instructions inside the file, but DOSBOX gives me illegal command anyway