Question related to assembly programming
Hello HN,
Please tell me how many different varieties of assembly language exists like x86 etc,,their differences(how do they differ from one another)
which varient should i choose?
Please give me some insight on the tools that are needed for programming in assembly.some say i need to buy a intel 8085/8086 kit.but others say a simulator would do.i'am damn confused.
also suggest good simulators if that's the case
4 comments
[ 4.8 ms ] story [ 16.8 ms ] threadIf you want to learn x86 assembly and have an x86 computer then all you need is an assembler. Have a power Mac then you have every thing you need to run power assembly. There is a free online book called the Art of Assembly.
PS: My advice for learning the IA-32(e) ISA is to read the Intel Developers manuals. http://www.intel.com/products/processor/manuals/
Calling it X86 assembly language is about like saying I wrote this in High Level Language and have that refer to pretty much any High level language in existence. It all runs on the same ISA so it must be the same language. Can't feed it all to the same compiler and have it work, so what that is just an implementation detail.