The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: tankaiha on May 05, 2007, 04:56:04 AM

Title: error in help?
Post by: tankaiha on May 05, 2007, 04:56:04 AM
in goasm help file, writing 64-bit programs:

SCASQ         ;new! equivalent to CMP [RDI],RAX then ADD RDI,4


should it be ADD RDI,8?


another question, any IDE support GoASM 64 bit programming?
Title: Re: error in help?
Post by: 1rDirEctoALgran0 on May 05, 2007, 04:09:07 PM
Yes you are right !
It is (virtualy) :
ADD RDI,8
or
SUB RDI,8 ; Don't forget there is a direction defined by the Dflag.

An excellent IDE is RadAsm. (I wrote a special INI file for it)
There is also Easycoder.

Regards.

Patrick
Title: Re: error in help?
Post by: tankaiha on May 06, 2007, 03:51:10 PM
thx Patrick.

another trivial typing mistake:

Stack frames in 64-bit Windows

Preserve for Windows the "non-volatile" registers of they are altered. (should be if :toothy)


btw, can radasm support 64 bit goasm assembling? and where to download that special ini file?

Title: Re: error in help?
Post by: 1rDirEctoALgran0 on May 06, 2007, 05:17:01 PM
This is some chunks for the GoAsm.ini  file in RadAsm.
Be warned that RadAsm is not a ready to use IDE.
You must download http://www.assembler.ca/radasm/RadASM2000/RadASM.zip,
and http://www.assembler.ca/radasm/RadASM2000/Assembly.zip,
and http://www.assembler.ca/radasm/RadASM2000/RadLNG.zip,
and http://www.assembler.ca/radasm/RadASM2000/RAHelp.zip,
and GoAsm, GoRC, GoLink,
and a debugger.
You must merge all that files to make your development studio.
Not an easy task for a beginner...
Be patient !
I'm ready to help you for that.
I have a ready-to-use RadAsm IDE now but it is in french... :toothy

Patrick


[attachment deleted by admin]
Title: Re: error in help?
Post by: tankaiha on May 07, 2007, 01:44:03 AM
hi Patrick, although i'v been using RadASM and MASM for win32 assembling for some time, but this time I'm confused.

I just replace Goasm.ini with chunks u give me, and then set paths, but still not work. No templates, and each time creat a new project, i have to input commond line for gorc, goasm, golink and everything.

How to configure RadASM with chunks ini for 64 bit assembly programming?

and, thanks for you help
Title: Re: error in help?
Post by: 1rDirEctoALgran0 on May 07, 2007, 08:20:05 AM
You need a plain GoAsm.INI file and not only chunks...
Does RadAsm is OK before replacing the original GoAsm.INI file ?

Patrick


[attachment deleted by admin]
Title: Re: error in help?
Post by: tankaiha on May 08, 2007, 11:52:56 AM
everything done.
thanks patrick :U