C# 클래스 Binarysharp.MemoryManagement.Assembly.Assembler.Fasm32Assembler

Implement Fasm.NET compiler for 32-bit development. More info: https://github.com/ZenLulz/Fasm.NET
상속: IAssembler
파일 보기 프로젝트 열기: ZenLulz/MemorySharp

공개 메소드들

메소드 설명
Assemble ( string asm ) : byte[]

Assemble the specified assembly code.

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

Assemble the specified assembly code at a base address.

메소드 상세

Assemble() 공개 메소드

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

Assemble() 공개 메소드

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.
리턴 byte[]