The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: jorgon on May 27, 2006, 01:45:54 PM

Title: Choice of 64-bit assemblers
Post by: jorgon on May 27, 2006, 01:45:54 PM
I just wanted to remind everybody that since September 2005 GoAsm has been working in 64-bits.  The same version of GoAsm works for 32-bits and 64-bits, you just specify /x64 in the command line.  GoLink also works in 64-bits, automatically sensing the 64-bit object file (which is in "PE+" format) and making the 64-bit executable from one or more object files and a resource file, if used.  GoRC has also been converted to enable it to produce a 64-bit object file if required.  All these tools are free.

The particular features of these tools which may be of interest to programmers who use assembler to make Windows programs are:-


The above, and a more general description of 64-bit programming,  has been written-up in my article "Writing 64-bit programs" (http://www.jorgon.freeserve.co.uk/GoasmHelp/64bits.htm).
The tools are available from these links:-
GoAsm (http://www.jorgon.freeserve.co.uk/Goasm.zip)
GoLink (http://www.jorgon.freeserve.co.uk/Golink.zip)
GoRC (http://www.jorgon.freeserve.co.uk/Gorcjorg.zip)
Here is some sample code:-
Hello 64-World 1 (http://www.jorgon.freeserve.co.uk/GoasmHelp/Hello64World1)
Hello 64-World 2 (http://www.jorgon.freeserve.co.uk/GoasmHelp/Hello64World2)
Hello 64-World 3 (http://www.jorgon.freeserve.co.uk/GoasmHelp/Hello64World3)
The "Go" tools main website is here (http://www.godevtool.com)
Title: Re: Choice of 64-bit assemblers
Post by: hutch-- on May 27, 2006, 02:09:52 PM
Jeremy,

Compliments, you have done some great work here.   :U

Sooner or later I will have to buy a 64 bit box but I am in no hurry as the hardware is changing too fast and there is not enough memory yet to take real advantage of the extra data in 64 bit.
Title: Re: Choice of 64-bit assemblers
Post by: bushpilot on May 27, 2006, 02:41:53 PM
I hope to get a 64 bit box by year-end.  I'm looking forward to using it.

Greg
Title: Re: Choice of 64-bit assemblers
Post by: Ossa on May 27, 2006, 02:47:33 PM
Well, I've had a 64-bit laptop for about a year and I'm still running 32-bit windows - but I'm planning to reformat and switch to XP 64 Pro in about a week, so I can finally start to see what the world is like with twice as many registers and twice as many bits. I'll definately be taking a look at GoAsm

Ossa
Title: Re: Choice of 64-bit assemblers
Post by: stanhebben on May 27, 2006, 02:58:26 PM
I have a 64-bit box and I'll certainly care about 64-bit windows some time.

The great thing about 64-bit is not really the 64-bit registers, but the presence of 16 registers, _and_ 16 xmm registers. A dream!
Title: Re: Choice of 64-bit assemblers
Post by: EduardoS on May 27, 2006, 10:42:03 PM
I have a 64bit BOX, a 64 bit windows but don't try 64bit assembly yet...
There are many reason for it, lazyness, few time, etc but the most important is no 64bit package like MASM (it helps a lot).
Title: Re: Choice of 64-bit assemblers
Post by: MazeGen on May 28, 2006, 11:33:21 AM
Jeremy, what I miss in GoAsm is x64 exception handling support. Please correct me if I'm wrong.
64-bit MASM seems to have the exception handling fully supported with a couple of new directives.

As for Win64, I don't like it much. First thing is very rigid license - you can buy it only with a new computer, but I already own 64-bit one. I was trying to buy it separately here and also in abroad about a month, but nobody wants to sell it. Finally, I have found one dealer in Slovak Republic disposed for sale.
Next thing is lacking drivers. You can't use 32-bit ones. Even quality and expensive hardware still have no drivers for Win64.
Title: Re: Choice of 64-bit assemblers
Post by: jorgon on May 28, 2006, 01:24:49 PM
QuoteJeremy, what I miss in GoAsm is x64 exception handling support. Please correct me if I'm wrong.
64-bit MASM seems to have the exception handling fully supported with a couple of new directives.
You're quite right, GoAsm 64-bit exception handling support is still in the pipeline.
Title: Re: Choice of 64-bit assemblers
Post by: James Ladd on May 31, 2006, 06:43:38 AM
Is there anything Jeremy can't do ?    :U
Title: Re: Choice of 64-bit assemblers
Post by: daydreamer on June 01, 2006, 07:18:08 PM
Quote from: Stan Hebben on May 27, 2006, 02:58:26 PM
I have a 64-bit box and I'll certainly care about 64-bit windows some time.

The great thing about 64-bit is not really the 64-bit registers, but the presence of 16 registers, _and_ 16 xmm registers. A dream!

I have equates for emulate those extra regs in 32bit, so you can write 32bit code and design for future 64bit enviroment with minimum effort recompile code that uses the extra regs

so instead of replacing a memory location with XMM8-XMM15, you already have used those names and no need to rewrite code if you use equates when still only have access to 32bit asm and easy switch to 64bit without lot of work to rework your code
same with other regs
Title: Re: Choice of 64-bit assemblers
Post by: Mr Wizard on June 17, 2006, 09:36:32 AM
Thanks for the status report on GoAsm!  I have a copy I DL'd earlier this year but really didn't even try it out because a lot of the free/cheap low-level programming tools (assemblers, linkers, C/C++ compilers, source code libraries, etc.) I find are just not functional or well supported enough to be used for "serious" purposes, namely my hobby/obsession for writing code used for computational number theory.  I figured I'd wait awhile and see if my frustration with the bloated mess known as Visual Studio and the obstacles to writing tight, fast .NET code (oxymoron alert!) would somehow magically disappear.

If I had my druthers, x64 CPUs would provide good support for arbitrary precision arithmetic (APA) in hardware. Part of the instruction set would consist of the sections of the innermost loops one must now code to perform arbitrary precision integer and floating point operations.

That sort of code was just plain ugly when one tried to accurately manipulate the binary representations of decimal numbers thousands of digits long without losing the desired precision for x86 platforms.  With the flat address space of the x64 architecture, the corresponding APA code becomes much simpler, but the development tools available from Microsoft are designed to discourage programming down to the bare metal, with their contrary purpose of generating MSIL code (about as useful to me as Pascal-like pseudocode!).  In fact, most of the difficulties I seem to face when writing x64 code now seem to stem from the fact that I'm targeting Winblows platforms and the stuff I want to do works just fine without a GUI -- MS somehow manages to complexify/obfuscate the process of writing console apps in Visual Studio, IMHO.

I'll make sure I am using the latest and greatest version of GoAsm before I give it a real try over the next few weeks.
Title: Re: Choice of 64-bit assemblers
Post by: fol67 on January 28, 2007, 08:57:24 PM
Does this assembler support ASM 286?
Title: Re: Choice of 64-bit assemblers
Post by: TomRiddle on January 29, 2007, 12:35:24 PM
Yes, it does
Title: Re: Choice of 64-bit assemblers
Post by: jorgon on January 31, 2007, 06:10:34 PM
QuoteI'll make sure I am using the latest and greatest version of GoAsm before I give it a real try over the next few weeks.

The very latest version of GoAsm 0.56 beta is now available from here (http://www.jorgon.freeserve.co.uk/GoasmBeta.zip).

This version:-

Since there was some delving into GoAsm's depths involved in the above changes, I thought it prudent to make this a beta for the moment.