FASM_MayCry 0.0.1
dotnet add package FASM_MayCry --version 0.0.1
NuGet\Install-Package FASM_MayCry -Version 0.0.1
<PackageReference Include="FASM_MayCry" Version="0.0.1" />
paket add FASM_MayCry --version 0.0.1
#r "nuget: FASM_MayCry, 0.0.1"
// Install FASM_MayCry as a Cake Addin #addin nuget:?package=FASM_MayCry&version=0.0.1 // Install FASM_MayCry as a Cake Tool #tool nuget:?package=FASM_MayCry&version=0.0.1
Easy Extension Fasm.net Process.net + ExampleS
C# .Net Framework 4.6.1
[System.Security.SuppressUnmanagedCodeSecurityAttribute] // disable security checks for better performance
[System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] // cdecl - let caller (.NET CLR) clean the stack
delegate IntPtr AssemblyReadRegistersFunction();
IntPtr returnValue=new IntPtr();
@"use32
mov eax, [ebp+4]
ret
".Get_FasmNet_Assemble().Get_Memory()
.Set_ExecuteDelegate[AssemblyReadRegistersFunction](_Delegate ⇒ {returnValue = _Delegate(); })
.Dispose();
;
<dependency id="Fasm.NET" version="1.70.3.2" exclude="Build,Analyzers" />
<dependency id="Process.NET" version="1.0.8" exclude="Build,Analyzers" />
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETStandard 4.6
- Fasm.NET (>= 1.70.3.2)
- Process.NET (>= 1.0.8)
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 |
---|---|---|
0.0.1 | 257 | 11/28/2022 |
[System.Security.SuppressUnmanagedCodeSecurityAttribute] // disable security checks for better performance
[System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] // cdecl - let caller (.NET CLR) clean the stack
delegate IntPtr AssemblyReadRegistersFunction();
IntPtr returnValue=new IntPtr();
@"use32
mov eax, [ebp+4]
ret
".Get_FasmNet_Assemble().Get_Memory()
.Set_ExecuteDelegate[AssemblyReadRegistersFunction](_Delegate => {returnValue = _Delegate(); })
.Dispose();
;