How to execute machine code (learning assembly)

10,120

Solution 1

Great place to learn windows assembly programming for x86 is legendary Iczelion's tutorials.

You can also find MASM tools here

and if you have the patience, #asm on EFNET

Solution 2

You might want to read this fantastic :book

Solution 3

I recommend you learn a RISC assembly instead of CISC; you will have fewer instructions to learn and you can practice building more of the higher-level constructs. I first learned MIPS assembly because it has a great free emulator (SPIM) and textbook, which I unfortunitely forget the name of, but it had an old-school woven binding and was a cream color.

Share:
10,120
Justin
Author by

Justin

html-query-plan - Display SQL Server Execution Plans in HTML

Updated on June 14, 2022

Comments

  • Justin
    Justin almost 2 years

    I'd like to have a go at learning assembly, and possibly writing my own simple assembler (I recently read an interesting article on how to create an operating system, and quickly realised that a certain familiarity with assembly would help me out a lot here).

    The trouble is that although I'm sure I'll have no problems finding articles and guides on assembly language / machine code, I tend to learn by doing, and I'd really like to have a go at executing my code. I figure I have two options:

    • Learn how to create a windows executable
    • Use some sort of virtual machine / emulator

    The second option sounds better to me, as it protects me from potentially making stupid mistakes, and will probably more closely resemble the environment I'll be in while writing an OS, but I'm not really sure how to do either.