Here you can find the source of toHex(int address)
public static int toHex(int address)
//package com.java2s; //License from project: Open Source License public class Main { public static int toHex(int address) { return address - 0xC00000 + 0x200; }/*from w ww.j a v a 2s . com*/ }