Anyone know who the equalivent for Microsoft Assembler in Mac Os X?
I need to do assembly language for microprocessor. (8086, 16bits). Just for learning purposes. Thanks!
I don't think there is any way of running 16 bit code on a Macintosh at all. For 32 bit code: The gcc compiler can compile all kinds of files, including assembler files. The easiest way to start is create an XCode project (New Project, then choose Standard Tool), switch to "Release", turn PowerPC code generation off, add some C code, "Show Assembly Code" in the Build menu, and use the resulting .s file as a template.
But the first steps for any MacOS X development are: Go to "developer.apple.com", click on "sign up" to get a free ADC account, then download and install the XCode tools.