mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-07 22:06:17 +08:00
28 lines
653 B
Java
28 lines
653 B
Java
package leechcore.entry;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @see https://github.com/ufrisk/LeechCore
|
|
* @author Ulf Frisk - pcileech@frizk.net
|
|
*/
|
|
public class LeechCoreBar implements Serializable
|
|
{
|
|
private static final long serialVersionUID = -8552459732654567239L;
|
|
public boolean fValid;
|
|
public boolean fIO;
|
|
public boolean f64Bit;
|
|
public boolean fPrefetchable;
|
|
public int iBar;
|
|
public long pa;
|
|
public long cb;
|
|
|
|
public String toString() {
|
|
if(this.fValid) {
|
|
return "LeechCoreBar:" + iBar + ":[" + Long.toHexString(pa) + "->" + Long.toHexString((pa + cb - 1)) + "]";
|
|
} else {
|
|
return "LeechCoreBar:" + iBar + ":inactive";
|
|
}
|
|
}
|
|
}
|