AsmArm64 1.0.0
dotnet add package AsmArm64 --version 1.0.0
NuGet\Install-Package AsmArm64 -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AsmArm64" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AsmArm64" Version="1.0.0" />
<PackageReference Include="AsmArm64" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AsmArm64 --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AsmArm64, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=AsmArm64&version=1.0.0
#tool nuget:?package=AsmArm64&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AsmArm64

<img align="right" width="160px" height="160px" src="https://raw.githubusercontent.com/xoofx/AsmArm64/main/img/AsmArm64.png">
AsmArm64 is a powerful ARM64 Assembler and Disassembler .NET library.
✨ Features
- Full support of
2448+
ARM64 v8.x/v9.x instructions- Automatically generated from ARM XML specification files from latest update
2024-12
. - Note that SVE/SVE2/SME are not yet supported.
- Automatically generated from ARM XML specification files from latest update
- Unique strongly typed assembler API
- Easily disassemble instructions and operands, including the knowledge of which operands are being read/write.
- High performance / zero allocation library for disassembling / assembling instructions.
15,000+
unit tests battle testing this library- Compatible with
net8.0+
and NativeAOT.
💻 Example
Strongly Typed Assembler API
var bufferList = new Arm64InstructionBufferByList();
var asm = new Arm64Assembler(bufferList);
// // Main entry point
// _start:
var labelStart = asm.CreateLabelId("_start");
asm.BindLabel(labelStart);
// mov x0, #5 // Call sum_loop(5)
asm.MOVZ(X0, 5);
// bl sum_loop // Call the function, result in x0
var labelSumLoop = asm.CreateLabelId("sum_loop");
asm.BL(labelSumLoop);
//
// // Do something with result (for now, just returning)
// ret // Return from _start (normally would return to a caller)
asm.RET();
//
//
// // Function: sum_loop(x0)
// // - Takes x0 as the loop limit
// // - Returns the sum in x0
// sum_loop:
asm.BindLabel(labelSumLoop);
// mov x1, #0 // Accumulator (sum)
asm.MOVZ(X1, 0);
// mov x2, #0 // Counter
asm.MOVZ(X2, 0);
//
// loop_start:
var labelLoopStart = asm.CreateLabelId("loop_start");
asm.BindLabel(labelLoopStart);
// add x1, x1, x2 // Add counter (x2) to sum (x1)
asm.ADD(X1, X1, X2);
// add x2, x2, #1 // Increment counter
asm.ADD(X2, X2, 1);
//
// cmp x2, x0 // Compare counter with limit
asm.CMP(X2, X0);
// blt loop_start // If counter < limit, continue loop
asm.B(LT, labelLoopStart);
//
// mov x0, x1 // Store result in x0 (return value)
asm.MOV(X0, X1);
// ret // Return to caller
asm.RET();
asm.Assemble();
// Instructions available in bufferList.Instructions
Disassembler API
var instructionBuffer = ...; /// Retrieve the buffer from above
var disassembler = new Arm64Disassembler();
var textWriter = new StringWriter();
disassembler.Disassemble(instructionBuffer, textWriter);
Console.WriteLine(textWriter);
will print:
LL_01:
mov x0, #5
bl LL_02
ret
LL_02:
mov x1, #0
mov x2, #0
LL_03:
add x1, x1, x2
add x2, x2, #1
cmp x2, x0
b.lt LL_03
mov x0, x1
ret
📖 User Guide
For more details on how to use AsmArm64, please visit the user guide.
🪪 License
This software is released under the BSD-2-Clause license.
🤗 Author
Alexandre Mutel aka xoofx.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 107 | 2/17/2025 |