detailed Tutorial in Euroasm
Posted: 07 Jun 2020 20:34
Dear All,
hello,
i have Windows 7, 64-bit, in my computer, and do not have Linux, at present. this is why i downloaded Euroasm assembler developed for Windows 64-bit operating systems.
i am a beginner in learning Euroasm. i looked in Manual presented on the Internet-site of Euroasm, and have impression, that Euroasm is very powerful Assembler (or, software) for Windows (64-bit) OS, and that can have access to the internal Windows functions (let's, say, C/C++-like functions, similar to those presented in windows.h) - is that true ?
i have very little experience in programming in 16-bit MASM fro DOS. for this reason, it would be easier for me to understand Euroasm Assembler based on some knwoledge of 16-bit MASM for DOS, at present.
can anyone in the Forum recommend me a comprehensive (!!!), and detailed (!!!) Tutorials in Euroasm Assembler, including an explantion of the syntaxes (!!!) of Euroasm, that is how to write codes in Euroasm, explanation of interruts (of course, if they exist), how to call, and even how to write (for oneself) functions, procedures, libraries, and, even, complicated projects, thaat consist of multiple files, etc.
to be certain, i present the MASM (16-bit, DOS) code, below, as an example,
-------------------------------------
cseg1 segment
org 100h
Begin:
mov ah,9
mov dx,offset Message1
int 21h
int 20h
Message1 db 'Hello, World !$'
cseg1 ends
end Begin
-------------------------------------
and, for example, the question is - how to write (to transfer to) that code, using Euroasm Assembler syntaxes, for the case of Windows 64 bit operating system ?
Thank you.
hello,
i have Windows 7, 64-bit, in my computer, and do not have Linux, at present. this is why i downloaded Euroasm assembler developed for Windows 64-bit operating systems.
i am a beginner in learning Euroasm. i looked in Manual presented on the Internet-site of Euroasm, and have impression, that Euroasm is very powerful Assembler (or, software) for Windows (64-bit) OS, and that can have access to the internal Windows functions (let's, say, C/C++-like functions, similar to those presented in windows.h) - is that true ?
i have very little experience in programming in 16-bit MASM fro DOS. for this reason, it would be easier for me to understand Euroasm Assembler based on some knwoledge of 16-bit MASM for DOS, at present.
can anyone in the Forum recommend me a comprehensive (!!!), and detailed (!!!) Tutorials in Euroasm Assembler, including an explantion of the syntaxes (!!!) of Euroasm, that is how to write codes in Euroasm, explanation of interruts (of course, if they exist), how to call, and even how to write (for oneself) functions, procedures, libraries, and, even, complicated projects, thaat consist of multiple files, etc.
to be certain, i present the MASM (16-bit, DOS) code, below, as an example,
-------------------------------------
cseg1 segment
org 100h
Begin:
mov ah,9
mov dx,offset Message1
int 21h
int 20h
Message1 db 'Hello, World !$'
cseg1 ends
end Begin
-------------------------------------
and, for example, the question is - how to write (to transfer to) that code, using Euroasm Assembler syntaxes, for the case of Windows 64 bit operating system ?
Thank you.