Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I compile assembly code?

Tags:

x86

assembly

A good friend of mine found and gave me a book on intel 80x86 assembly coding. One rather large fact that the books skips over is what program you should use to code with. Any suggestions?

like image 722
Alan Williams Avatar asked Jun 06 '26 03:06

Alan Williams


1 Answers

Depending on your platform, you may be interested in gas, yasm, nasm, or masm. Most Linux systems should have one of the first three in their package management system, and the fourth, the Microsoft Macro Assembler, is free on the internet.

like image 65
Colin Valliant Avatar answered Jun 08 '26 00:06

Colin Valliant