Version 5.8

This commit is contained in:
ufrisk
2023-08-20 21:33:18 +02:00
parent 48978d25f9
commit 2361020029
114 changed files with 4475 additions and 534 deletions

View 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";
}
}
}