Всем доброго времени суток. у меня проблема новичка .
поставил я masm32 — («C:masm32») .
запускаю qeditor, пишу код:
mov ah,9
mov dx,offset Message
int 21h
сохраняю файлик miks.asm в папку («C:masm32») .
нажимаю Project -> Build All, а он мне ошибку:
//—————
Assembling: C:masm32miks_sempl_1.asm
MASM : fatal error A1000: cannot open file : C:masm32miks_sempl_1.asm
//—————
подскажите пожалуйста как можно исправить?! чо-то уже net перерыл а решение проблемы так и не нашел 🙁
cannot open file: filename
The assembler was unable to open a source, include, or output file.
One of the following may be a cause:
The file does not exist.
The file is in use by another process.
The filename is not valid.
A read-only file with the output filename already exists.
The current drive is full.
The current directory is the root and is full.
The device cannot be written to.
The drive is not ready.
«C:masm32miks_sempl_1.asm » ———проверьте наличие сего файлика
I have a Visual Studio 2017 project, where I’m trying to interface a C++ and Assembly program. So I have a header («indexof.h») that has the Prototypes for the assembly procedures in an extern «C» block, and a main.cpp, which includes indexof.h and uses the procedures made available in it, and then an IndexOf.asm file that contains my assembly code (which also has prototypes for its procedures, before the .code section). Unfortunately, when I attempt to run it, I get this error:
I desperately need help (It’s due tomorrow), this was a project setup provided by my class, I’m just trying to run it, and I haven’t even gotten to the actual thing I need to do yet. Thank you!
cannot open file: filename
The assembler was unable to open a source, include, or output file.
One of the following may be a cause:
The file does not exist.
The file is in use by another process.
The filename is not valid.
A read-only file with the output filename already exists.
The current drive is full.
The current directory is the root and is full.