UASM64 Library is a x64 port of the functions from the MASM32 Library that are included with the MASM32 SDK.
The functions ported to an x64 version in the UASM64 Library aim to match the parameters and features of the original x86 functions from the MASM32 Library where possible. In a few functions that may not be possible, and an alternative approach to achieve the same desired result may be used instead.
The names of the functions and parameter names in the UASM64 Library compared to the MASM32 Library have been changed to increase readability. Equates are provided in the UASM64.inc
file to map to the new function names - which also helps when porting x86 projects to x64 ones.
Additionally, new functions have been added to the UASM64 Library to expand and compliment the existing functions.
UASM64 Library is targeted specifically for use with projects that use the UASM assembler (the x64 version), but likely other compilers and assemblers can utilize it as well.
All credit and thanks to all the original authors and code contributors of the functions in the MASM32 Library.
The UASM64 Library and source code are free to use for anyone, and anyone can contribute to the UASM64 Library project.
- Download the latest release: UASM64-Library.zip
-
Copy
UASM64.inc
to yourUasm\Include
folder (or wherever your include files are located) -
Copy
UASM64.lib
to yourUasm\Lib\x64
folder (or wherever your libraries are located) -
Add the following to your project:
include UASM64.inc includelib UASM64.lib
Included with the releases are additional RadASM IDE autocomplete / intellisense type files, along with ones for the WinASM IDE. Each *.api.txt
, or *.vaa.txt
file contains instructions as to where to paste their contents.
Other resources that may be useful: