[SOLVED]Help with Assembler
Posted: Sun Mar 23, 2014 12:39 pm
I have no idea on how to program with assembler but I want to know. Where can I learn?
The Place to Start for Operating System Developers
http://forum.osdev.org./
Yes. Lua, Python and a bit of C++(I don't know if that is high level or not!)siavoshkc wrote:Do you know any high level language?
Thanks! Read the FASM manual, does it matter that I am using NASM?Bender wrote:Perhaps the FASM Manual?
Chapter 1.2 and Chapter 2.1 are the ones that contain information about assembly syntax and x86 instructions. Rest all are assembler specific (macros/preprocessor/formats/assembler specific directives etc.).
Intel Manuals should help you too.
And maybe a Google Search?
No FASM and NASM are pretty similar when it comes to assembly syntax, however the preprocessor directives are assembler specific. For example 'include' is the include directive in FASM while counterpart in NASM is '%include'. NASM's preprocessor directives are prefixed by a '%'.Read the FASM manual, does it matter that I am using NASM?