*/
public class ResolverTest {
public static void main(String[] args) {
final ObjectResolver res = new Unsafe.UnsafeObjectResolver();
System.out.println(NumberUtils.hex(res.addressOf32(VmUtils.getVm())));
final X86BinaryAssembler os = new X86BinaryAssembler(X86CpuID.createID(null), X86Constants.Mode.CODE32, 0);
os.write32(0x12345678);
byte[] b = os.getBytes();
System.out.println(NumberUtils.hex(b, 0, os.getLength()));