Where could one start learning assembly language from? Could you suggest some place that can get me kick-started with it?
|
|
When I was in college I was used to use the awesome 8086 Microprocessor Emulator for Assembly programming on Windows. There are beginner tutorials available in its website. |
||||
|
|
|
I tried Programming from the Ground Up some months ago and it helped me a lot getting started on x86 assembly. Also, it's free :) |
|||
|
|
|
For Win32 Assembly Programming, this is a good start: |
|||
|
|
|
If you're on Windows and have an x86 processor:
|
||||
|
|
|
I began learning assembly from MIPS (a RISC microprocessor). An emulator called SPIM could be downloaded and installed freely from the author's website. http://pages.cs.wisc.edu/~larus/spim.html SPIM provides an easy to use interface with a console to return the results. Users could also inspect registers from the emulator. The author of SPIM recommends many useful resources, available on the website (scroll down to 'Resources'). |
|||
|
|
|
The best way to learn assembler IMHO is to disassemble compiled code, and at first use it in inline assembler, which allows you to write stuff around it in a HLL. It is a nice intermediate step before going full asm. I learned it that way in Turbo Pascal, but Delphi and e.g. the Free FreePascal still support this today. (easier than e.g. gcc inline asm) |
|||
|
|
|
Checkout the vtc videos.http://www.vtc.com/products/Assembly-Language-Programming-Tutorials.htm |
|||
|
|
|
Assembly Language Step by Step by Jeff Duntemann. Good introductory text which will also talk about the basics of setting up a debugger and text editor (kate) to work with assembly. |
|||
|
|