Registry / utility / jnr-x86asm

jnr-x86asm

JSON →
library1.0.2javamavenunverified

A pure-Java library for assembling X86 and X86_64 machine code.

<dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-x86asm</artifactId> <version>1.0.2</version> </dependency>
INSTALL
IMPORT
SIG · JNR-X86ASM
J
jnr-x86asm
utilityjavav1.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Assembler
jnr.x86asm.Assembler

Minimal example creating an assembler and generating a MOV instruction.

import jnr.x86asm.Assembler; public class Example { public static void main(String[] args) { Assembler asm = new Assembler(); asm.mov(EAX, 42); byte[] code = asm.toByteArray(); System.out.println("Generated " + code.length + " bytes"); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
jnr-x86asm — mvn dependency:get jnr-x86asm · libregistry