Anyone know of a good Assembler?

Started by
14 comments, last by GarlandIX 22 years ago
I want to learn a little assembly language programming and i was wondering if anyone knows of a good assembler i could use. ------------------------------ If someone asks you "A penny for your thoughts" and you put your two cents in, do you get change?
------------------------------BASIC programmers don't die, they just GOSUB and don't return.
Advertisement
google: NASM
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes." - the Laughing Man
GO to this link: http://www.programmersheaven.com/search/download.asp?FileID=19433


This is a very good Assembler called BLASM! It might need a slight justification but nothing major, just a file-path tweak or two.

[edited by - masterconjurer on March 22, 2002 1:02:02 AM]
MASM is good. It's the Microsoft Assembler. Free. The newest version supports high-level macros for some things, the best of which is function calling.
Macro version:    call TheFunction, Param1, Param2, Param3 Regular version:    push Param3    push Param2    push Param1    call TheFunction   


~CGameProgrammer( );



[edited by - CGameProgrammer on March 22, 2002 1:12:32 AM]

~CGameProgrammer( );Developer Image Exchange -- New Features: Upload screenshots of your games (size is unlimited) and upload the game itself (up to 10MB). Free. No registration needed.
Masm !!!!!

and grab this pair of assembly books (16 and 32 bits)
http://webster.cs.ucr.edu/

you can get masm from

http://www.movsd.com/


Good luck

Optimising and ASM rules!!!
some assemblers
http://www.freedos.org/freedos/software/lsmtable.cgi?dir=lang

fasm seems pretty spiffy to me, though.
http://fasm.metro-nt.pl/

Oh, get MASM32 right now!

It''s very good!

Get it! Get it! Get it and be happy!!!



The Dark Wind begins to blow...
quote:Original post by GarlandIX
I want to learn a little assembly language programming and i was wondering if anyone knows of a good assembler i could use.

------------------------------
If someone asks you "A penny for your thoughts" and you put your two cents in, do you get change?


Get TASM, it''s borlands version of an ASM assembler, it reminds me of X86 ASM a bit. That''s the one I used for my DOS programming. Wrote some pretty cool things using it, ... Ah! the memories....






"And that''s the bottom line cause I said so!"

Cyberdrek
cyberdrek@gdnmail.net
Founder Laval Linux

/(bb|[^b]{2})/ that is the Question -- ThinkGeek.com
Hash Bang Slash bin Slash Bash -- #!/bin/bash
[Cyberdrek | ]
quote:Original post by Cyberdrek
... it reminds me of X86 ASM a bit.


uh .... it is x86 ASM.
Just to let you know... I went to the site named above ( http://www.movsd.com/ ) to download MASM and whilst it was installing my antivirus program found a virus called W32/Undertake in one of the files in an examples directory (example8 or something I didn''t take note at the time)

Neil

This topic is closed to new replies.

Advertisement