The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: Shooter on December 16, 2010, 10:16:07 PM

Title: GoASM How-to question (Solved)
Post by: Shooter on December 16, 2010, 10:16:07 PM
How do I convert this bit of code originally written for MASM32 into code for GoASM?

mov eax,[eax].NMHDR.code

Thanks,
-Shooter
Title: Re: GoASM How-to question
Post by: Ramon Sala on December 16, 2010, 10:47:49 PM
mov eax, [eax + NMHDR.code]
Title: Re: GoASM How-to question
Post by: Shooter on December 17, 2010, 04:11:14 AM
Thanks, Ramon. I thought it was that, but my proggy is still acting strange, so I thought maybe I was doing that bit of code incorrectly. (le sigh.)

-Shooter
Title: Re: GoASM How-to question
Post by: Ramon Sala on December 17, 2010, 05:22:06 PM
You are welcome!

Ramon