mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-06-02 08:40:25 +08:00
Version 5.8
This commit is contained in:
26
vmmjava/leechcore/entry/LeechCoreBar.java
Normal file
26
vmmjava/leechcore/entry/LeechCoreBar.java
Normal file
@@ -0,0 +1,26 @@
|
||||
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 = -8552459732654567238L;
|
||||
public boolean fValid;
|
||||
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";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user