Dark Bit Factory & Gravity

PROGRAMMING => Other languages => ASM => Topic started by: xoreaxeax on May 22, 2012

Title: New to asm!
Post by: xoreaxeax on May 22, 2012
I've been teaching myself some windows assembly for the past couple months using masm, but it seems fasm has quite a more active following, any reason to stick with masm or should I switch over?
Title: Re: New to asm!
Post by: Jim on May 24, 2012
Hi xoreaxeax, welcome to the forum!
I can't think of any reason to stick or change...
Microsoft will help you coding Windows, FASM maybe help with other things and be more up-to-date.
Jim
Title: Re: New to asm!
Post by: benny! on May 25, 2012
 :hi: xoreaxeax
Title: Re: New to asm!
Post by: jace_stknights on May 30, 2012
 :hi: and I will say: eor.l d0,d0  ;D
Title: Re: New to asm!
Post by: maracuja on June 06, 2012
Welcome 33C0 :-)
Title: Re: New to asm!
Post by: egons on June 06, 2012
i do not like FASM for windows. Masm is good
Title: Re: New to asm!
Post by: Jedi on March 24, 2014
Old thread, but I'm also new here and in the same boat. Learning some Windows assembly to code some demo effects. I chose assembly because that's what I've been using on other platforms. I've read a couple of books and done some simple utilities so far. I feel okay with the assembly language and studying OpenGL at the moment. Oh, for the record I use MASM.
Title: Re: New to asm!
Post by: spathi on March 25, 2014
I have been relearning 6502 assembly after 35 years.  How much harder is x86?
Title: Re: New to asm!
Post by: Moroboshisan on March 25, 2014
Old thread, but I'm also new here and in the same boat. Learning some Windows assembly to code some demo effects. I chose assembly because that's what I've been using on other platforms. I've read a couple of books and done some simple utilities so far. I feel okay with the assembly language and studying OpenGL at the moment. Oh, for the record I use MASM.
have you taken a look at hitchhikr OpenGL examples?
Title: Re: New to asm!
Post by: Jedi on March 26, 2014
Yes, I've been studying some of them already, but thanks for the suggestion.
Title: Re: New to asm!
Post by: rain_storm on March 30, 2014
I have been relearning 6502 assembly after 35 years.  How much harder is x86?

Not harder just different. But for 32 bit x86 you must also learn the OS ( Win32 API, or Unix ) so this will slow you down.

It may be easier to learn x86 under DOS first and then take on Win32. Or learn Win32 from a HLL and then start learning x86.

Also iczelions tutorials are a great starting place.