C# Class Binarysharp.MemoryManagement.Assembly.Assembler.Fasm32Assembler

Implement Fasm.NET compiler for 32-bit development. More info: https://github.com/ZenLulz/Fasm.NET
Inheritance: IAssembler
Show file Open project: ZenLulz/MemorySharp

Public Methods

Method Description
Assemble ( string asm ) : byte[]

Assemble the specified assembly code.

Assemble ( string asm, IntPtr baseAddress ) : byte[]

Assemble the specified assembly code at a base address.

Method Details

Assemble() public method

Assemble the specified assembly code.
public Assemble ( string asm ) : byte[]
asm string The assembly code.
return byte[]

Assemble() public method

Assemble the specified assembly code at a base address.
public Assemble ( string asm, IntPtr baseAddress ) : byte[]
asm string The assembly code.
baseAddress System.IntPtr The address where the code is rebased.
return byte[]